Some fixup:
[squirrelmail.git] / src / printer_friendly_main.php
CommitLineData
f226cba7 1<?php
2
3 /**
4 ** printer_friendly_main.php
5 **
6 ** Copyright (c) 1999-2000 The SquirrelMail development team
7 ** Licensed under the GNU GPL. For full terms see the file COPYING.
8 **
9 ** $Id$
10 **/
11
692155b7 12 require_once('../src/validate.php');
13 require_once('../functions/page_header.php');
14
15 displayHtmlHeader( _("Printer Friendly"), '', FALSE );
16
17 echo "<frameset rows=\"50, *\" noresize border=\"0\">\n".
18 "<frame src=\"printer_friendly_top.php\" name=\"top_frame\" scrolling=\"off\">".
19 '<frame src="printer_friendly_bottom.php?passed_ent_id=';
20 echo $passed_ent_id . '&mailbox=' . urlencode($mailbox) .
21 '&passed_id=' . $passed_id;
22 echo "\" name=\"bottom_frame\">".
23 "</frameset>\n".
24 "</html>\n";
25
26?>