rc1 -> cvs (for consistancy [did I spell that right?])
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 6 Aug 2001 13:39:48 +0000 (13:39 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 6 Aug 2001 13:39:48 +0000 (13:39 +0000)
Added extra backslashes because of string encoding blah blah blah.  :-)

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1473 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/mime.php
functions/strings.php

index 54ab1a1c79e9724949a8c89b3407fa9d4ffced1a..a9c22b7ae53617da8a11f5a4ced820e98fe8bc03 100644 (file)
       global $default_charset;
 
       // Encode only if the string contains 8-bit characters or =?
-      if (ereg("([\200-\377]|=\\?)", $string)) {
+      if (ereg("([\\200-\\377]|=\\?)", $string)) {
          
          // First the special characters
          $string = str_replace("=", "=3D", $string);
index c9a24e6add7760ce2a06045e6d7c5dd5b12067e2..dcef5bd0c11200de57a3626f18b4b0f020335fd8 100644 (file)
 
    /* SquirrelMail version number -- DO NOT CHANGE */
    global $version;
-   $version = '1.2.0 [rc1]';
+   $version = '1.2.0 [cvs]';
 
 
    function find_mailbox_name ($mailbox) {