Happy New Year
[squirrelmail.git] / src / about.php
index 2a77952e07eb8d5cabc02f7972ef8f67d1bc1580..9293956ed0e893584b63c078bd8c590d6ba01824 100644 (file)
  * - What more information is needed?
  * - Display of system information might be restricted
  *
- * @copyright © 1999-2005 The SquirrelMail Project Team
+ * @copyright 1999-2018 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);
 
 ?>
 <p align="center">
 <img src="../images/sm_logo.png" width="308" height="111"
     alt="SquirrelMail Logo" /><br />
 <table align="center" width="80%" cellpadding="1" cellspacing="2" border="0">
-<tr><td bgcolor="#dcdcdc" align="center"><center><b>
-<?php echo sprintf(_("About SquirrelMail %s"),$version); ?>
-</b></center></td></tr>
+<tr><td bgcolor="#dcdcdc" align="center"><div style="text-align: center;"><b>
+<?php echo sprintf(_("About SquirrelMail %s"), SM_VERSION); ?>
+</b></div></td></tr>
 <tr><td>
 <br />
 <?php echo _("SquirrelMail is the name of the program that provides access to your email via the web."); ?>
@@ -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."),'<a href="http://www.squirrelmail.org/" target="_blank">','</a>');
+echo sprintf(_("For more information about SquirrelMail and the SquirrelMail Project Team, see %sthe SquirrelMail website%s."),'<a href="http://squirrelmail.org/" target="_blank">','</a>');
 ?>
 <br />
 <br /><br />
@@ -68,11 +67,11 @@ echo sprintf(_("For more information about SquirrelMail and the SquirrelMail Pro
 </b><br/><br/>
 <small>
 <?php
-echo sprintf(_("You are using SquirrelMail version: %s"),$version);
+echo sprintf(_("You are using SquirrelMail version: %s"), SM_VERSION);
 echo "<br />\n";
 echo _("The administrator installed the following plugins:");
 echo "<br />\n";
-if ( count ($plugins) > 0 ) {
+if ( isset($plugins) && count ($plugins) > 0 ) {
     sort($plugins);
     echo "<ul>\n";
     foreach($plugins as $plugin) {
@@ -87,6 +86,7 @@ if ( count ($plugins) > 0 ) {
 </small>
 <br /><br />
 </td></tr>
-<tr><td align="center">&copy; 1999 - 2005 The SquirrelMail Project Team</td></tr>
+<tr><td align="center">&copy; <?php echo SM_COPYRIGHT ?> The SquirrelMail Project Team</td></tr>
 </table></p>
-</body></html>
\ No newline at end of file
+<?php
+$oTemplate->display('footer.tpl');