Browse Source

Provide View Unsafe Images link on viewing a text/html attachment.
Thanks `Bicster'

Thijs Kinkhorst 19 years ago
parent
commit
e279d667ea
2 changed files with 10 additions and 1 deletions
  1. 1 0
      ChangeLog
  2. 9 1
      src/view_text.php

+ 1 - 0
ChangeLog

@@ -131,6 +131,7 @@ Version 1.5.2 - CVS
   - Drop obsolete script plugins/make_archive.pl.
   - Drop obsolete script plugins/make_archive.pl.
   - Fix misspelled constant PREG_SPLIT_NI_EMPTY in sqimap_get_message
   - Fix misspelled constant PREG_SPLIT_NI_EMPTY in sqimap_get_message
     (#1543573).
     (#1543573).
+  - Provide View Unsafe Images link on viewing a text/html attachment.
 
 
 Version 1.5.1 (branched on 2006-02-12)
 Version 1.5.1 (branched on 2006-02-12)
 --------------------------------------
 --------------------------------------

+ 9 - 1
src/view_text.php

@@ -48,6 +48,9 @@ $encoding = strtolower($header->encoding);
 $msg_url   = 'read_body.php?' . $QUERY_STRING;
 $msg_url   = 'read_body.php?' . $QUERY_STRING;
 $msg_url   = set_url_var($msg_url, 'ent_id', 0);
 $msg_url   = set_url_var($msg_url, 'ent_id', 0);
 $dwnld_url = '../src/download.php?' . $QUERY_STRING . '&absolute_dl=true';
 $dwnld_url = '../src/download.php?' . $QUERY_STRING . '&absolute_dl=true';
+$unsafe_url = 'view_text.php?' . $QUERY_STRING;
+$unsafe_url = set_url_var($unsafe_url, 'view_unsafe_images', 1);
+
 
 
 $body = mime_fetch_body($imapConnection, $passed_id, $ent_id);
 $body = mime_fetch_body($imapConnection, $passed_id, $ent_id);
 $body = decodeBody($body, $encoding);
 $body = decodeBody($body, $encoding);
@@ -62,10 +65,12 @@ if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
 }
 }
 
 
 if ($type1 == 'html' || (isset($override_type1) &&  $override_type1 == 'html')) {
 if ($type1 == 'html' || (isset($override_type1) &&  $override_type1 == 'html')) {
+    $ishtml = TRUE;
     $body = MagicHTML( $body, $passed_id, $message, $mailbox);
     $body = MagicHTML( $body, $passed_id, $message, $mailbox);
     // html attachment with character set information
     // html attachment with character set information
-    if (! empty($charset))
+    if (! empty($charset)) {
         $body = charset_decode($charset,$body,false,true);
         $body = charset_decode($charset,$body,false,true);
+    }
 } else {
 } else {
     translateText($body, $wrap_at, $charset);
     translateText($body, $wrap_at, $charset);
 }
 }
@@ -80,6 +85,9 @@ echo _("Viewing a text attachment") . ' - ' .
 ?>
 ?>
 </b></td><tr><tr><td><div style="text-align: center;">
 </b></td><tr><tr><td><div style="text-align: center;">
 <?php
 <?php
+if ( $ishtml ) {
+    echo '<a href="' . $unsafe_url . '">' . _("View Unsafe Images") . '</a> | ';
+}
 echo '<a href="' . $dwnld_url . '">' . _("Download this as a file") . '</a>';
 echo '<a href="' . $dwnld_url . '">' . _("Download this as a file") . '</a>';
 ?>
 ?>
 </div><br />
 </div><br />