new api changes explained
[squirrelmail.git] / src / printer_friendly_main.php
index f5029b6ecc08967af3263b34c0b323c42011a208..24d10e222b8f6384e9d58fb7dc9da7d535bfc567 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * printer_friendly_main.php
  *
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Copyright (c) 1999-2003 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * $Id$
@@ -20,17 +20,17 @@ displayHtmlHeader( _("Printer Friendly"), '', FALSE );
 
 /* get those globals into gear */
 $passed_ent_id = $_GET['passed_ent_id'];
-$passed_id = $_GET['passed_id'];
+$passed_id = (int) $_GET['passed_id'];
 $mailbox = $_GET['mailbox'];
 /* end globals */
 
 echo "<frameset rows=\"60, *\" noresize border=\"0\">\n".
-     "<frame src=\"printer_friendly_top.php\" name=\"top_frame\" scrolling=\"no\">".
+     '<frame src="printer_friendly_top.php" name="top_frame" scrolling="no" />'.
      '<frame src="printer_friendly_bottom.php?passed_ent_id='.
-     $passed_ent_id . '&amp;mailbox=' . urlencode($mailbox) .
+     urlencode($passed_ent_id) . '&amp;mailbox=' . urlencode($mailbox) .
      '&amp;passed_id=' . $passed_id .
-     "\" name=\"bottom_frame\">".
-     "</frameset>\n".
+     '" name="bottom_frame" />'.
+     "\n</frameset>\n".
      "</html>\n";
 
 ?>