Browse Source

modified html_link to redirect output to view_text.

stekkel 23 years ago
parent
commit
ea6df0a14c
1 changed files with 7 additions and 8 deletions
  1. 7 8
      functions/attachment_common.php

+ 7 - 8
functions/attachment_common.php

@@ -130,14 +130,13 @@ function attachment_common_link_message(&$Args)
 
 function attachment_common_link_html(&$Args)
 {
-    $Args[1]['attachment_common']['href'] = '../src/download.php?startMessage=' . 
-        $Args[2] . '&passed_id=' . $Args[3] . '&mailbox=' . $Args[4] .
-       '&passed_ent_id=' . $Args[5] . '&override_type0=text&override_type1=html';
-    
-    if ($Args[8] && $Args[9]) {
-        $Args[1]['attachment_common']['href'] .= '&where=' . 
-        urlencode($Args[8]) . '&what=' . urlencode($Args[9]);
-    }
+    global $QUERY_STRING;
+    $Args[1]['attachment_common']['href'] = '../src/view_text.php?'. $QUERY_STRING.
+       /* why use the overridetype? can this be removed */
+       '&override_type0=text&override_type1=html';
+    $Args[1]['attachment_common']['href'] =
+          set_url_var($Args[1]['attachment_common']['href'], 
+	  'ent_id',$Args[5]);
 
     $Args[1]['attachment_common']['text'] = _("view");