X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fabout.php;h=d14b385327fb0d772125e889608826ad68f77e4a;hp=23ab8fdcf9a75f5cf296a7fac08ebec0f4b8564d;hb=a9805897ba12de9a63b9a435ccbb49a027d86e4a;hpb=6e0899c07fb8e5662142b5aeecb10de51571c740 diff --git a/src/about.php b/src/about.php index 23ab8fdc..d14b3853 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-2014 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
- + - +
- -
+ +

@@ -56,11 +54,11 @@ echo "
\n
\n"; echo sprintf(_("SquirrelMail is a feature rich, standards compliant webmail application written in PHP. It was made by a group of volunteers united in the SquirrelMail Project Team and is released as open source, free software under the %sGNU General Public License%s."),'',''); // add space between two sentences. -// Don't want to join two sprintf strings. +// Don't want to join two sprintf strings. 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

- +display('footer.tpl');