Browse Source

This urlencode(urldecode thing breaks stuff and doesn't add real value.
Remove it until a real solution comes up.

Thijs Kinkhorst 22 years ago
parent
commit
05fa169217
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/image.php

+ 1 - 1
src/image.php

@@ -37,7 +37,7 @@ echo '<BR>' .
     '<B><CENTER>' .
     _("Viewing an image attachment") . " - ";
 
-$msg_url = 'read_body.php?' . urlencode(strip_tags(urldecode($QUERY_STRING)));
+$msg_url = 'read_body.php?' . $QUERY_STRING;
 $msg_url = set_url_var($msg_url, 'ent_id', 0);
 echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';