- changed sql query to work with version <= 5.5 (fixes #529)
- added php-xml extension check ti installation (fixes #530) -> thanks to lando
This commit is contained in:
@@ -212,6 +212,20 @@ function requirement_checks()
|
||||
{
|
||||
status_message('green', 'OK');
|
||||
}
|
||||
|
||||
status_message('begin', $lng['install']['phpxml']);
|
||||
|
||||
if(!extension_loaded('xml'))
|
||||
{
|
||||
status_message('red', $lng['install']['notinstalled']);
|
||||
$_die = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
status_message('green', 'OK');
|
||||
}
|
||||
|
||||
|
||||
|
||||
status_message('begin', $lng['install']['phpfilter']);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user