Feature #2044 check browscap file while the user make the installation

skala
Juan Carlos Raña 15 years ago
parent 5d9812143d
commit e2d3c7fb62
  1. 21
      main/install/install.lib.php

@ -207,6 +207,22 @@ function detect_browser_language() {
return 'english';
}
/**
* This function checks if exist path to file browscap.ini
* Juan Carlos Raña Trabado
*/
function check_browscap(){
$setting = ini_get('browscap');
if (strpos($setting, 'browscap.ini')){
return '<strong><font color="green">'.$setting.'</font></strong>';
$setting = true;
}else{
return '<strong><font color="red">NULL</font></strong>';
$setting=false;
}
}
/* FILESYSTEM RELATED FUNCTIONS */
/**
@ -1148,6 +1164,11 @@ function display_requirements($installType, $badUpdatePath, $updatePath = '', $u
<td class="requirements-recommended">10M-100M</td>
<td class="requirements-value">'.ini_get('post_max_size').'</td>
</tr>
<tr>
<td class="requirements-item"><a href="http://www.php.net/manual/en/misc.configuration.php#ini.browscap">Browscap is loaded</a></td>
<td class="requirements-recommended">Not null. Path to browscap.ini</td>
<td class="requirements-value">'.check_browscap().'</td>
</tr>
</table>';
echo ' </div>';
echo '</div>';

Loading…
Cancel
Save