Explorar el Código

Fixed body retrival error on cyrus. (removed trailing space after command)

Pontus Ullgren hace 23 años
padre
commit
2311a76ae9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      functions/mime.php

+ 1 - 1
functions/mime.php

@@ -379,7 +379,7 @@ function mime_fetch_body($imap_stream, $id, $ent_id ) {
         $ent_id = 1;
     }
 
-    $cmd = "FETCH $id BODY[$ent_id] ";
+    $cmd = "FETCH $id BODY[$ent_id]";
     $data = sqimap_run_command ($imap_stream, $cmd, true, $response, $message);
 
     do {