Browse Source

undo urlencoding of the querystring because it doesn't work. view_header
link was broken.

stekkel 21 years ago
parent
commit
fc6680d9d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/read_body.php

+ 1 - 1
src/read_body.php

@@ -737,7 +737,7 @@ function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) {
 
     $urlMailbox = urlencode($mailbox);
     if (sqgetGlobalVar('QUERY_STRING', $query_string, SQ_SERVER)) {                                                                 
-        $query_string = urlencode($query_string);                                                                                   
+        $query_string = $query_string;                                                                                   
     } else {                                                                                                                        
         $query_string = '';                                                                                                         
     }