Getting ready for 1.2.0 release.
[squirrelmail.git] / src / printer_friendly_main.php
index 6bade61ba83ffe6aab9077e8c373e5bdb5e0e9ff..2a1d78d72d8902badfe480d9f548bd5daa6af30a 100644 (file)
@@ -1,24 +1,42 @@
 <?php
 
-  /**
  **  printer_friendly_main.php
  **
  **  Copyright (c) 1999-2000 The SquirrelMail development team
  **  Licensed under the GNU GPL. For full terms see the file COPYING.
  **
  **  $Id$
  **/
+/**
* printer_friendly_main.php
+ *
* Copyright (c) 1999-2002 The SquirrelMail Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
* $Id$
+ */
 
-?><!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">
-<html>
-  <head>
-    <title>Print Email</title>
-  </head>
-  <frameset rows="50, *" noresize border="0">
-    <frame src="printer_friendly_top.php" name="top_frame" scrolling="off">
-    <frame src="printer_friendly_bottom.php?passed_ent_id=<?php
-  echo $passed_ent_id . '&mailbox=' . urlencode($mailbox) .
-       '&passed_id=' . $passed_id;
-?>" name="bottom_frame">
-  </frameset>
-</html>
+/*****************************************************************/
+/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!!           ***/
+/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION.             ***/
+/***    + Base level indent should begin at left margin, as    ***/
+/***      the require_once below looks.                        ***/
+/***    + All identation should consist of four space blocks   ***/
+/***    + Tab characters are evil.                             ***/
+/***    + all comments should use "slash-star ... star-slash"  ***/
+/***      style -- no pound characters, no slash-slash style   ***/
+/***    + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD      ***/
+/***      ALWAYS USE { AND } CHARACTERS!!!                     ***/
+/***    + Please use ' instead of ", when possible. Note "     ***/
+/***      should always be used in _( ) function calls.        ***/
+/*** Thank you for your help making the SM code more readable. ***/
+/*****************************************************************/
+
+require_once('../src/validate.php');
+require_once('../functions/page_header.php');
+
+    displayHtmlHeader( _("Printer Friendly"), '', FALSE );
+
+    echo "<frameset rows=\"50, *\" noresize border=\"0\">\n".
+         "<frame src=\"printer_friendly_top.php\" name=\"top_frame\" scrolling=\"off\">".
+         '<frame src="printer_friendly_bottom.php?passed_ent_id=';
+    echo $passed_ent_id . '&mailbox=' . urlencode($mailbox) .
+         '&passed_id=' . $passed_id;
+    echo "\" name=\"bottom_frame\">".
+         "</frameset>\n".
+         "</html>\n";
+
+?>