f226cba7 |
1 | <?php |
44966ae5 |
2 | |
35586184 |
3 | /** |
b5cd24a8 |
4 | * printer_friendly frameset |
35586184 |
5 | * |
6c84ba1e |
6 | * @copyright (c) 1999-2005 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 | |
30967a1e |
12 | /** |
13 | * Path for SquirrelMail required files. |
14 | * @ignore |
15 | */ |
86725763 |
16 | define('SM_PATH','../'); |
17 | |
18 | /* SquirrelMail required files. */ |
08185f2a |
19 | require_once(SM_PATH . 'include/validate.php'); |
692155b7 |
20 | |
0b97a708 |
21 | /* get those globals into gear */ |
b5cd24a8 |
22 | global $color; |
23 | if ( ! sqgetGlobalVar('passed_ent_id',$passed_ent_id,SQ_GET)) |
24 | $passed_ent_id = 0; |
25 | if ( ! sqgetGlobalVar('mailbox',$mailbox,SQ_GET) || |
26 | ! sqgetGlobalVar('passed_id',$passed_id,SQ_GET)) { |
27 | error_box(_("Invalid URL"),$color); |
28 | } else { |
29 | $passed_id= (int) $passed_id; |
0b97a708 |
30 | /* end globals */ |
b5cd24a8 |
31 | displayHtmlHeader( _("Printer Friendly"), '', false, true ); |
32 | echo '<frameset rows="60, *">' . "\n"; |
33 | echo '<frame src="printer_friendly_top.php" name="top_frame" ' |
44966ae5 |
34 | . 'scrolling="no" noresize="noresize" frameborder="0" />' . "\n"; |
b5cd24a8 |
35 | echo '<frame src="printer_friendly_bottom.php?passed_ent_id=' |
91e0dccc |
36 | . urlencode($passed_ent_id) . '&mailbox=' . urlencode($mailbox) |
b5cd24a8 |
37 | . '&passed_id=' . $passed_id |
44966ae5 |
38 | . '" name="bottom_frame" frameborder="0" />' . "\n"; |
b5cd24a8 |
39 | echo "</frameset>\n"; |
40 | } |
5e9e90fd |
41 | ?> |
91e0dccc |
42 | </html> |