mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-06 12:56:56 +01:00
Update requirements.php
This commit is contained in:
parent
34a0edd2d0
commit
54bb955759
@ -146,7 +146,7 @@ foreach ($settings as $name => $values) {
|
||||
} elseif ($values['type'] == 'ext') {
|
||||
$status = extension_loaded($name);
|
||||
} elseif ($values['type'] == 'function') {
|
||||
$status = is_callable($name);
|
||||
$status = ((function_exists($name) && is_callable($name)) ? 1: 0);
|
||||
} else {
|
||||
$ini = str_replace(['k', 'M'], ['000', '000000'], ini_get($name));
|
||||
$real = str_replace(['k', 'M'], ['000', '000000'], $description);
|
||||
|
Loading…
Reference in New Issue
Block a user