diff options
author | momo-i <webmaster@momo-i.org> | 2011-02-07 07:19:43 +0900 |
---|---|---|
committer | momo-i <webmaster@momo-i.org> | 2011-02-07 07:19:43 +0900 |
commit | ce4f426103f6f03f94867868945846973d29428b (patch) | |
tree | 25f97a23df87a7d62d414103a21772ffd9dea6e5 /templates/show_info.inc.php | |
parent | 8b8c41cda1cbea7d0c46f813d53f1e4696cfb6c5 (diff) | |
download | ampache-ce4f426103f6f03f94867868945846973d29428b.tar.gz ampache-ce4f426103f6f03f94867868945846973d29428b.tar.bz2 ampache-ce4f426103f6f03f94867868945846973d29428b.zip |
Update admin sidebar menu.
Rename function name.
Diffstat (limited to 'templates/show_info.inc.php')
-rw-r--r-- | templates/show_info.inc.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/templates/show_info.inc.php b/templates/show_info.inc.php index 64646979..35b5abe8 100644 --- a/templates/show_info.inc.php +++ b/templates/show_info.inc.php @@ -45,6 +45,7 @@ <p><?php echo _('This page shows security information and ampache update information.'); ?></p> </div> <div> +<button onclick="window.close()"><?php echo _('Close this window'); ?></button> <table align="center" cellpadding="3" cellspacing="0"> <tr> <td><font size="+1"><?php echo _('CHECK'); ?></font></td> @@ -55,19 +56,25 @@ </tr> <tr> <td valign="top"><?php echo _('Ampache Version'); ?></td> - <td valign="top">[<?php echo check_ampache(); ?>]</td> + <td valign="top">[<?php echo check_ampache_version(); ?>]</td> <td> <?php echo _('Compare that you are running a version of Ampache and currently a version of Ampache.'); ?> </td> </tr> <tr> <td valign="top"><?php echo _('PHP Version'); ?></td> - <td valign="top">[<?php echo check_php_security(); ?>]</td> + <td valign="top">[<?php echo check_php_version(); ?>]</td> <td> <?php echo _('This test checks for vulnerable PHP whether to use version.'); ?> </td> </tr> <tr> + <td valign="top"><?php echo _('PHP recommendation settings'); ?></td> + <td valign="top">[]</td> + <td> + <?php echo _('This test checks whether the recommended security settings.'); ?></td> +</tr> +<tr> <td valign="top"><?php echo _('PHP Info'); ?></td> <td valign="top">-</td> <td> @@ -82,6 +89,7 @@ </table> </div> <div id="bottom"> +<button onclick="window.close()"><?php echo _('Close this window'); ?></button> <p><strong>Ampache Security Center.</strong><br /> Pour l'Amour de la Musique.</p> </div> |