X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fabout.php;h=e591f806198b4c8f8c92ebc631dfa2cd69eb865b;hp=b048ce02539a9e1ecbf93ca13518142567debae7;hb=cc51047fc1b0a21a0491c34487661698567c2100;hpb=a2b193bc8c1cefe3db9f4b38ce346f0527a0ec0e diff --git a/src/about.php b/src/about.php index b048ce02..e591f806 100644 --- a/src/about.php +++ b/src/about.php @@ -3,9 +3,6 @@ /** * about.php * - * Copyright (c) 1999-2005 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * An "about box" detailing SquirrelMail info. * * TODO: @@ -13,29 +10,30 @@ * - What more information is needed? * - Display of system information might be restricted * + * @copyright © 1999-2007 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ +/** This is the about page */ +define('PAGE_NAME', 'about'); + /** - * Path for SquirrelMail required files. - * @ignore + * Include the SquirrelMail initialization file. */ -define('SM_PATH','../'); +require('../include/init.php'); -/* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); - -displayPageHeader($color, 'None' ); +displayPageHeader($color); ?>

SquirrelMail Logo
- + - +
- -
+ +

@@ -60,7 +58,7 @@ echo sprintf(_("SquirrelMail is a feature rich, standards compliant webmail appl echo ' '; // i18n: %s tags are used in order to remove html URL attributes from translation -echo sprintf(_("For more information about SquirrelMail and the SquirrelMail Project Team, see %sthe SquirrelMail website%s."),'',''); +echo sprintf(_("For more information about SquirrelMail and the SquirrelMail Project Team, see %sthe SquirrelMail website%s."),'',''); ?>


@@ -69,11 +67,11 @@ echo sprintf(_("For more information about SquirrelMail and the SquirrelMail Pro

\n"; echo _("The administrator installed the following plugins:"); echo "
\n"; -if ( count ($plugins) > 0 ) { +if ( isset($plugins) && count ($plugins) > 0 ) { sort($plugins); echo "
    \n"; foreach($plugins as $plugin) { @@ -88,6 +86,7 @@ if ( count ($plugins) > 0 ) {

© 1999 - 2005 The SquirrelMail Project Team
© The SquirrelMail Project Team

- \ No newline at end of file +display('footer.tpl');