Merge branch 'master' of github.com:dignajar/bludit

This commit is contained in:
dignajar 2016-07-30 16:11:51 -03:00
commit 9d868d93ff
1 changed files with 10 additions and 0 deletions

View File

@ -200,6 +200,16 @@ function checkSystem()
array_push($stdOut, $tmp);
}
if(!in_array('gd', $phpModules))
{
$errorText = 'PHP module GD is not installed.';
error_log($errorText, 0);
$tmp['title'] = 'PHP module';
$tmp['errorText'] = $errorText;
array_push($stdOut, $tmp);
}
if(!in_array('dom', $phpModules))
{
$errorText = 'PHP module DOM is not installed. (ERR_203)';