Removing "www." in some links as well as the link to the deprecated feedback page.
[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 /**
13 * Include the SquirrelMail initialization file.
14 */
15 include('../include/init.php');
16
17 /* get those globals into gear */
18 global $color;
19 if ( ! sqgetGlobalVar('passed_ent_id',$passed_ent_id,SQ_GET))
20 $passed_ent_id = 0;
21 if ( ! sqgetGlobalVar('mailbox',$mailbox,SQ_GET) ||
22 ! sqgetGlobalVar('passed_id',$passed_id,SQ_GET)) {
23 error_box(_("Invalid URL"));
24 } else {
25 $passed_id= (int) $passed_id;
26 $view_unsafe_images = (bool) $_GET['view_unsafe_images'];
27 sqgetGlobalVar('show_html_default', $show_html_default, SQ_FORM);
28 /* end globals */
29 displayHtmlHeader( _("Printer Friendly"), '', false, true );
30
31 $oErrorHandler->setDelayedErrors(true);
32
33 $url = 'printer_friendly_bottom.php?passed_ent_id=' .
34 urlencode($passed_ent_id) . '&amp;mailbox=' . urlencode($mailbox) .
35 '&amp;passed_id=' . $passed_id .
36 '&amp;view_unsafe_images='.$view_unsafe_images .
37 '&amp;show_html_default='.$show_html_default;
38
39 $oTemplate->assign('printer_friendly_url', $url);
40
41 $oTemplate->display('printer_friendly_main.tpl');
42
43 }