Make message list refresh work again in default advanced tempate
[squirrelmail.git] / src / printer_friendly_main.php
1 <?php
2
3 /**
4 * printer_friendly frameset
5 *
6 * @copyright &copy; 1999-2007 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 /** This is the printer_friendly_main page */
13 define('PAGE_NAME', 'printer_friendly_main');
14
15 /**
16 * Include the SquirrelMail initialization file.
17 */
18 include('../include/init.php');
19
20 /* get those globals into gear */
21 if ( ! sqgetGlobalVar('passed_ent_id',$passed_ent_id,SQ_GET))
22 $passed_ent_id = 0;
23 if ( ! sqgetGlobalVar('mailbox',$mailbox,SQ_GET) ||
24 ! sqgetGlobalVar('passed_id',$passed_id,SQ_GET)) {
25 error_box(_("Invalid URL"));
26 } else {
27 $passed_id= (int) $passed_id;
28 $view_unsafe_images = (bool) $_GET['view_unsafe_images'];
29 sqgetGlobalVar('show_html_default', $show_html_default, SQ_FORM);
30 /* end globals */
31 displayHtmlHeader( _("Printer Friendly"), '', false, true );
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');
44
45 }