phpdoc formating fixes
[squirrelmail.git] / src / printer_friendly_main.php
index fd62ebc5c228041e008d379bc22850a60e2d8c37..d6ec600e95653fff0d20d4f0d7a44313631dd9fd 100644 (file)
@@ -3,13 +3,17 @@
 /**
  * printer_friendly_main.php
  *
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Copyright (c) 1999-2004 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
- * $Id$
+ * @version $Id$
+ * @package squirrelmail
  */
 
-/* Path for SquirrelMail required files. */
+/**
+ * Path for SquirrelMail required files.
+ * @ignore
+ */
 define('SM_PATH','../');
 
 /* SquirrelMail required files. */
@@ -25,12 +29,12 @@ $mailbox = $_GET['mailbox'];
 /* end globals */
 
 echo "<frameset rows=\"60, *\" noresize border=\"0\">\n".
-     "<frame src=\"printer_friendly_top.php\" name=\"top_frame\" scrolling=\"no\">".
+     '<frame src="printer_friendly_top.php" name="top_frame" scrolling="no" />'.
      '<frame src="printer_friendly_bottom.php?passed_ent_id='.
      urlencode($passed_ent_id) . '&amp;mailbox=' . urlencode($mailbox) .
      '&amp;passed_id=' . $passed_id .
-     "\" name=\"bottom_frame\">".
-     "</frameset>\n".
+     '" name="bottom_frame" />'.
+     "\n</frameset>\n".
      "</html>\n";
 
 ?>