Browse Source

* Fixed typo

Tyler Akins 24 years ago
parent
commit
570cb1c3a4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      functions/smtp.php

+ 1 - 1
functions/smtp.php

@@ -405,7 +405,7 @@
          $tmp = fgets($smtpConnection, 1024);
          if (errorCheck($tmp, $smtpConnection)!=5) return(0);
 
-         fputs($smtpConnection, base64_encode ($OneTimePadDecrypt($key, $onetimepad)) . "\r\n");
+         fputs($smtpConnection, base64_encode (OneTimePadDecrypt($key, $onetimepad)) . "\r\n");
          $tmp = fgets($smtpConnection, 1024);
          if (errorCheck($tmp, $smtpConnection)!=5) return(0);
       }