diff options
| author | 2013-12-01 23:26:30 +0100 | |
|---|---|---|
| committer | 2013-12-01 23:26:30 +0100 | |
| commit | c39d88b04b58d12c54d76d2f97c4d008fb448160 (patch) | |
| tree | 83c419683c96e4cd9bd9bc445d6927dc16d98c5d /public/install.php | |
| parent | f0be8fd4f278f16a953492b05369f9ca215e9aab (diff) | |
Install.php : mise à jour pour favicons
Voir https://github.com/marienfressinaud/FreshRSS/issues/273
Diffstat (limited to 'public/install.php')
| -rw-r--r-- | public/install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/install.php b/public/install.php index 9b7cc779f..577714764 100644 --- a/public/install.php +++ b/public/install.php @@ -271,7 +271,7 @@ function checkStep1 () { $data = DATA_PATH && is_writable (DATA_PATH); $cache = CACHE_PATH && is_writable (CACHE_PATH); $log = LOG_PATH && is_writable (LOG_PATH); - $favicons = is_writable (PUBLIC_PATH . '/favicons'); + $favicons = is_writable (DATA_PATH . '/favicons'); return array ( 'php' => $php ? 'ok' : 'ko', @@ -476,7 +476,7 @@ function printStep1 () { <?php if ($res['favicons'] == 'ok') { ?> <p class="alert alert-success"><span class="alert-head"><?php echo _t ('ok'); ?></span> <?php echo _t ('favicons_is_ok'); ?></p> <?php } else { ?> - <p class="alert alert-error"><span class="alert-head"><?php echo _t ('damn'); ?></span> <?php echo _t ('file_is_nok', PUBLIC_PATH . '/favicons'); ?></p> + <p class="alert alert-error"><span class="alert-head"><?php echo _t ('damn'); ?></span> <?php echo _t ('file_is_nok', DATA_PATH . '/favicons'); ?></p> <?php } ?> <?php if ($res['all'] == 'ok') { ?> |
