diff options
Diffstat (limited to 'templates/show_install_check.inc.php')
-rw-r--r-- | templates/show_install_check.inc.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/show_install_check.inc.php b/templates/show_install_check.inc.php index 5f9d64f9..42e5e51a 100644 --- a/templates/show_install_check.inc.php +++ b/templates/show_install_check.inc.php @@ -195,5 +195,17 @@ } ?> </td> +</tr><tr> +<td><?php echo _('ampache.cfg.php is writable'); ?></td> +<td> +<?php + if (!check_config_writable()) { + echo debug_result('', false); + } + else { + echo debug_result('', true); + } +?> +</td> </tr> </table> |