Browse Source

Undo Change to Trunk

Andy 4 years ago
parent
commit
fabb21dfcf
1 changed files with 1 additions and 2 deletions
  1. 1 2
      functions/mime.php

+ 1 - 2
functions/mime.php

@@ -1420,8 +1420,7 @@ function sq_skipspace($body, $offset){
     $me = 'sq_skipspace';
     preg_match('/^(\s*)/s', substr($body, $offset), $matches);
     if (!empty($matches[1])){
-        $count = strlen($matches[1]);
-        $offset += $count;
+        $offset += strlen($matches[1]);
     }
     return $offset;
 }