install: Print the full path of checked dirs

Print the full path of the directories checked by Chamilo installation
instead of just their pseudo–relative paths.
1.9.x
Diego Escalante Urrelo 11 years ago committed by Diego Escalante Urrelo
parent f4aea259da
commit ae5ab7fc67
  1. 6
      main/install/install.lib.php

@ -1311,15 +1311,15 @@ function display_requirements($installType, $badUpdatePath, $updatePath = '', $u
<td class="requirements-value">'.$file_perm.' </td>
</tr>
<tr>
<td class="requirements-item">chamilo/home/</td>
<td class="requirements-item">'.api_get_path(SYS_CODE_PATH).'home/</td>
<td class="requirements-value">'.check_writable(api_get_path(SYS_CODE_PATH).'home/').'</td>
</tr>
<tr>
<td class="requirements-item">chamilo/main/css/</td>
<td class="requirements-item">'.api_get_path(SYS_CODE_PATH).'css/</td>
<td class="requirements-value">'.check_writable(api_get_path(SYS_CODE_PATH).'css/', true).' ('.get_lang('SuggestionOnlyToEnableCSSUploadFeature').')</td>
</tr>
<tr>
<td class="requirements-item">chamilo/main/lang/</td>
<td class="requirements-item">'.api_get_path(SYS_CODE_PATH).'lang/</td>
<td class="requirements-value">'.check_writable(api_get_path(SYS_CODE_PATH).'lang/', true).' ('.get_lang('SuggestionOnlyToEnableSubLanguageFeature').')</td>
</tr>'.
//'<tr>

Loading…
Cancel
Save