Make session restore work in compose_in_new. Cannot do login session reset until...
[squirrelmail.git] / src / printer_friendly_main.php
CommitLineData
f226cba7 1<?php
44966ae5 2
35586184 3/**
b5cd24a8 4 * printer_friendly frameset
35586184 5 *
4b5049de 6 * @copyright &copy; 1999-2007 The SquirrelMail Project Team
b5cd24a8 7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 8 * @version $Id$
8f6f9ba5 9 * @package squirrelmail
35586184 10 */
f226cba7 11
ebd2391c 12/** This is the printer_friendly_main page */
13define('PAGE_NAME', 'printer_friendly_main');
14
30967a1e 15/**
202bcbcc 16 * Include the SquirrelMail initialization file.
30967a1e 17 */
202bcbcc 18include('../include/init.php');
692155b7 19
0b97a708 20/* get those globals into gear */
b5cd24a8 21if ( ! sqgetGlobalVar('passed_ent_id',$passed_ent_id,SQ_GET))
22 $passed_ent_id = 0;
23if ( ! sqgetGlobalVar('mailbox',$mailbox,SQ_GET) ||
24 ! sqgetGlobalVar('passed_id',$passed_id,SQ_GET)) {
1b858d86 25 error_box(_("Invalid URL"));
b5cd24a8 26} else {
27 $passed_id= (int) $passed_id;
e2da1d80 28 $view_unsafe_images = (bool) $_GET['view_unsafe_images'];
4c8986b4 29 sqgetGlobalVar('show_html_default', $show_html_default, SQ_FORM);
0b97a708 30/* end globals */
b5cd24a8 31 displayHtmlHeader( _("Printer Friendly"), '', false, true );
be7a2943 32
33 $oErrorHandler->setDelayedErrors(true);
34
35 $url = 'printer_friendly_bottom.php?passed_ent_id=' .
36 urlencode($passed_ent_id) . '&amp;mailbox=' . urlencode($mailbox) .
37 '&amp;passed_id=' . $passed_id .
38 '&amp;view_unsafe_images='.$view_unsafe_images .
39 '&amp;show_html_default='.$show_html_default;
40
41 $oTemplate->assign('printer_friendly_url', $url);
42
43 $oTemplate->display('printer_friendly_main.tpl');
a2b193bc 44
be7a2943 45}