X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fabout.php;h=879370bfa431b7da0dfc4870de5eb5f182c655a6;hb=67fc0e2499aab722b1cb4774c3b78d625da96400;hp=76f85ffae4eb4b4990eb92fcf63d77adcf93b594;hpb=47ccfad452e8d345542d09e59112cac317cffed8;p=squirrelmail.git diff --git a/src/about.php b/src/about.php index 76f85ffa..879370bf 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-2009 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');