Putting XHTML compliance back
[squirrelmail.git] / src / printer_friendly_main.php
1 <?php
2
3 /**
4 * printer_friendly frameset
5 *
6 * @copyright (c) 1999-2004 The SquirrelMail Project Team
7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
8 * @version $Id$
9 * @package squirrelmail
10 */
11
12 /**
13 * Path for SquirrelMail required files.
14 * @ignore
15 */
16 define('SM_PATH','../');
17
18 /* SquirrelMail required files. */
19 require_once(SM_PATH . 'include/validate.php');
20
21 /* get those globals into gear */
22 global $color;
23 if ( ! sqgetGlobalVar('passed_ent_id',$passed_ent_id,SQ_GET))
24 $passed_ent_id = 0;
25 if ( ! sqgetGlobalVar('mailbox',$mailbox,SQ_GET) ||
26 ! sqgetGlobalVar('passed_id',$passed_id,SQ_GET)) {
27 error_box(_("Invalid URL"),$color);
28 } else {
29 $passed_id= (int) $passed_id;
30 /* end globals */
31 displayHtmlHeader( _("Printer Friendly"), '', false, true );
32 echo '<frameset rows="60, *">' . "\n";
33 echo '<frame src="printer_friendly_top.php" name="top_frame" '
34 . 'scrolling="no" noresize="noresize" frameborder="0" />' . "\n";
35 echo '<frame src="printer_friendly_bottom.php?passed_ent_id='
36 . urlencode($passed_ent_id) . '&amp;mailbox=' . urlencode($mailbox)
37 . '&amp;passed_id=' . $passed_id
38 . '" name="bottom_frame" frameborder="0" />' . "\n";
39 echo "</frameset>\n";
40 }
41 ?>
42 </html>