X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fabout.php;h=3008d3bd4eb740b57e1309df6d5293e4a977ecfd;hp=76f85ffae4eb4b4990eb92fcf63d77adcf93b594;hb=ceacdb3c87567ed38856c7d60ff3d862ae2cb4db;hpb=47ccfad452e8d345542d09e59112cac317cffed8 diff --git a/src/about.php b/src/about.php index 76f85ffa..3008d3bd 100644 --- a/src/about.php +++ b/src/about.php @@ -10,31 +10,30 @@ * - What more information is needed? * - Display of system information might be restricted * - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright 1999-2011 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','../'); - -/* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); +require('../include/init.php'); -displayPageHeader($color, 'None' ); +displayPageHeader($color); ?>

SquirrelMail Logo
- + - +
- -
+ +

@@ -59,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."),'',''); ?>


@@ -68,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) { @@ -87,6 +86,7 @@ if ( count ($plugins) > 0 ) {

© 1999 - 2006 The SquirrelMail Project Team
© The SquirrelMail Project Team

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