diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_info.inc.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/show_info.inc.php b/templates/show_info.inc.php index 35b5abe8..c8a8f3d2 100644 --- a/templates/show_info.inc.php +++ b/templates/show_info.inc.php @@ -70,7 +70,11 @@ </tr> <tr> <td valign="top"><?php echo _('PHP recommendation settings'); ?></td> - <td valign="top">[]</td> + <td valign="top"><?php + foreach(check_security() as $warning=>$message) { + printf('<span title="%s">%s</span><br />', $message, $warning); + } + ?></td> <td> <?php echo _('This test checks whether the recommended security settings.'); ?></td> </tr> |