浏览代码

rc1 -> cvs (for consistancy [did I spell that right?])
Added extra backslashes because of string encoding blah blah blah. :-)

Tyler Akins 24 年之前
父节点
当前提交
b229cea96f
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      functions/mime.php
  2. 1 1
      functions/strings.php

+ 1 - 1
functions/mime.php

@@ -729,7 +729,7 @@
       global $default_charset;
       global $default_charset;
 
 
       // Encode only if the string contains 8-bit characters or =?
       // Encode only if the string contains 8-bit characters or =?
-      if (ereg("([\200-\377]|=\\?)", $string)) {
+      if (ereg("([\\200-\\377]|=\\?)", $string)) {
          
          
          // First the special characters
          // First the special characters
          $string = str_replace("=", "=3D", $string);
          $string = str_replace("=", "=3D", $string);

+ 1 - 1
functions/strings.php

@@ -222,7 +222,7 @@
 
 
    /* SquirrelMail version number -- DO NOT CHANGE */
    /* SquirrelMail version number -- DO NOT CHANGE */
    global $version;
    global $version;
-   $version = '1.2.0 [rc1]';
+   $version = '1.2.0 [cvs]';
 
 
 
 
    function find_mailbox_name ($mailbox) {
    function find_mailbox_name ($mailbox) {