浏览代码

* Fixed typo

Tyler Akins 24 年之前
父节点
当前提交
570cb1c3a4
共有 1 个文件被更改,包括 1 次插入1 次删除
  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);
       }