@@ -781,7 +781,8 @@ public function setAuthMethod($name, $callback, $prepend = true)
781
781
*/
782
782
protected function authDigestMD5 ($ uid , $ pwd , $ authz = '' )
783
783
{
784
- trigger_error (__CLASS__ . ' ( ' . $ this ->host . '): Authentication method DIGEST-MD5 is no longer secure and should be avoided. ' , E_USER_DEPRECATED );
784
+ trigger_error (__CLASS__ . ' ( ' . $ this ->host . '): Authentication method DIGEST-MD5 ' .
785
+ ' is no longer secure and should be avoided. ' , E_USER_DEPRECATED );
785
786
786
787
if (PEAR ::isError ($ error = $ this ->put ('AUTH ' , 'DIGEST-MD5 ' ))) {
787
788
return $ error ;
@@ -836,7 +837,8 @@ protected function authDigestMD5($uid, $pwd, $authz = '')
836
837
*/
837
838
protected function authCRAMMD5 ($ uid , $ pwd , $ authz = '' )
838
839
{
839
- trigger_error (__CLASS__ . ' ( ' . $ this ->host . '): Authentication method CRAM-MD5 is no longer secure and should be avoided. ' , E_USER_DEPRECATED );
840
+ trigger_error (__CLASS__ . ' ( ' . $ this ->host . '): Authentication method CRAM-MD5 ' .
841
+ ' is no longer secure and should be avoided. ' , E_USER_DEPRECATED );
840
842
841
843
if (PEAR ::isError ($ error = $ this ->put ('AUTH ' , 'CRAM-MD5 ' ))) {
842
844
return $ error ;
@@ -879,7 +881,8 @@ protected function authCRAMMD5($uid, $pwd, $authz = '')
879
881
*/
880
882
protected function authLogin ($ uid , $ pwd , $ authz = '' )
881
883
{
882
- trigger_error (__CLASS__ . ' ( ' . $ this ->host . '): Authentication method LOGIN is no longer secure and should be avoided. ' , E_USER_DEPRECATED );
884
+ trigger_error (__CLASS__ . ' ( ' . $ this ->host . '): Authentication method LOGIN ' .
885
+ ' is no longer secure and should be avoided. ' , E_USER_DEPRECATED );
883
886
884
887
if (PEAR ::isError ($ error = $ this ->put ('AUTH ' , 'LOGIN ' ))) {
885
888
return $ error ;
@@ -927,7 +930,8 @@ protected function authLogin($uid, $pwd, $authz = '')
927
930
*/
928
931
protected function authPlain ($ uid , $ pwd , $ authz = '' )
929
932
{
930
- trigger_error (__CLASS__ . ' ( ' . $ this ->host . '): Authentication method PLAIN is no longer secure and should be avoided. ' , E_USER_DEPRECATED );
933
+ trigger_error (__CLASS__ . ' ( ' . $ this ->host . '): Authentication method PLAIN ' .
934
+ ' is no longer secure and should be avoided. ' , E_USER_DEPRECATED );
931
935
932
936
if (PEAR ::isError ($ error = $ this ->put ('AUTH ' , 'PLAIN ' ))) {
933
937
return $ error ;
0 commit comments