Browse Source

removed debugging information

Luke Ehresman 25 năm trước cách đây
mục cha
commit
fd1f5a2ede
1 tập tin đã thay đổi với 0 bổ sung2 xóa
  1. 0 2
      functions/imap_general.php

+ 0 - 2
functions/imap_general.php

@@ -238,12 +238,10 @@
    function sqimap_append ($imap_stream, $sent_folder, $length) {
       fputs ($imap_stream, "a001 APPEND \"$sent_folder\" (\\Seen) \{$length}\r\n");
       $tmp = fgets ($imap_stream, 1024);
-      echo $tmp;
    } 
 
    function sqimap_append_done ($imap_stream) {
       fputs ($imap_stream, "\r\n");
       $tmp = fgets ($imap_stream, 1024);
-      echo $tmp;
    }
 ?>