X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fprinter_friendly_top.php;h=127a9dfc65e3445772d56ef6bcdbc78925c0035f;hb=c3ccfa1912b4ca47279d259bb587ceb293ce5d83;hp=f1562b2ee3ef35cafd1325c43741baebffb2b18a;hpb=3bbf5974b641c19d1450a1a8063a4c7c07fb9222;p=squirrelmail.git diff --git a/src/printer_friendly_top.php b/src/printer_friendly_top.php index f1562b2e..127a9dfc 100644 --- a/src/printer_friendly_top.php +++ b/src/printer_friendly_top.php @@ -3,7 +3,7 @@ /** * printer_friendly_top.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Copyright (c) 1999-2003 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * top frame of printer_friendly_main.php @@ -12,14 +12,19 @@ * $Id$ */ -require_once('../src/validate.php'); -require_once('../functions/strings.php'); -require_once('../config/config.php'); -require_once('../src/load_prefs.php'); -require_once('../functions/page_header.php'); +/* Path for SquirrelMail required files. */ +define('SM_PATH','../'); + +/* SquirrelMail required files. */ +require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/strings.php'); +require_once(SM_PATH . 'config/config.php'); +require_once(SM_PATH . 'include/load_prefs.php'); +require_once(SM_PATH . 'functions/page_header.php'); +require_once(SM_PATH . 'functions/html.php'); displayHtmlHeader( _("Printer Friendly"), - "\n", FALSE ); -echo "\n" . - //'
'. - '
'. - '
'. - ' '. - ''. - '
'. - '
'. - //'
'. - ''. - "\n"; +echo "\n" . + html_tag( 'div', + ''. + '
'. + ' '. + ''. + '
'. + '
', + 'right' ); + ''. "\n"; -?> \ No newline at end of file +?>