X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fabout.php;h=e591f806198b4c8f8c92ebc631dfa2cd69eb865b;hb=9785376ec2914ab2f8bd8005680ebd95b106e9f4;hp=08799e217b4c256f85d63f3b1369251a9a664a7a;hpb=3d05d2fc867fe480ddede7da7af082783a30baa9;p=squirrelmail.git diff --git a/src/about.php b/src/about.php index 08799e21..e591f806 100644 --- a/src/about.php +++ b/src/about.php @@ -3,38 +3,37 @@ /** * 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: * - Insert org_name, provider_url? * - 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','../'); - -/* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); +require('../include/init.php'); -displayPageHeader($color, 'None' ); +displayPageHeader($color); ?>

SquirrelMail Logo
- + - +
- -
+ +

@@ -54,8 +53,12 @@ echo "
\n
\n"; // i18n: %s tags are used in order to remove html URL attributes from translation 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. +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."),'',''); ?>


@@ -64,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) { @@ -78,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');