X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fabout.php;h=dcdb6df4cb54039387e6a6546baa05ae1c423b52;hb=dcc5e0d309e8636aa7687801825904c3474c3d1a;hp=6602325b2b590859d3b90cc025c00eebcf4372f3;hpb=f8a1ed5aa365d515e4e2ac3602f900bfb9447fce;p=squirrelmail.git diff --git a/src/about.php b/src/about.php index 6602325b..dcdb6df4 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-2017 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
- + - +
- -
+ +

@@ -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) { @@ -83,10 +81,12 @@ if ( count ($plugins) > 0 ) { } else { echo ''._("none installed")."\n\n"; } + ?>

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

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