Update of /cvsroot/squirrelmail/squirrelmail/functions
In directory usw-pr-cvs1:/tmp/cvs-serv6904
Modified Files:
mime.php
Log Message:
* Hopefully fixed the "no text part" bug -- # 417504
Index: mime.php
===================================================================
RCS file: /cvsroot/squirrelmail/squirrelmail/functions/mime.php,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -w -r1.103 -r1.104
--- mime.php 2001/04/22 04:59:05 1.103
+++ mime.php 2001/04/26 13:16:27 1.104
@@ -484,7 +484,7 @@
global $show_html_default;
if (! $message)
- return;
+ return 0;
// Show text/plain or text/html -- the first one we find.
if ($message->header->type0 == 'text' &&
|