Wow - I believe this is finally all the &'s in the current code
[squirrelmail.git] / src / printer_friendly_main.php
CommitLineData
f226cba7 1<?php
2
35586184 3/**
4 * printer_friendly_main.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * $Id$
10 */
f226cba7 11
35586184 12require_once('../src/validate.php');
13require_once('../functions/page_header.php');
692155b7 14
3bbf5974 15displayHtmlHeader( _("Printer Friendly"), '', FALSE );
692155b7 16
3bbf5974 17echo "<frameset rows=\"60, *\" 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='.
5e9e90fd 20 $passed_ent_id . '&amp;mailbox=' . urlencode($mailbox) .
21 '&amp;passed_id=' . $passed_id .
3bbf5974 22 "\" name=\"bottom_frame\">".
23 "</frameset>\n".
24 "</html>\n";
692155b7 25
5e9e90fd 26?>