diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-03 00:47:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-03 00:47:51 +0000 |
commit | 9a0b424407d2f7eed0e9c8a84f5b2c7b52cca980 (patch) | |
tree | a68c954f46c7e846b7eee55023dd537aae56f6b9 /modules/system | |
parent | af7acb3d700ed12fe091a85dff67adbb705313a4 (diff) | |
download | brdo-9a0b424407d2f7eed0e9c8a84f5b2c7b52cca980.tar.gz brdo-9a0b424407d2f7eed0e9c8a84f5b2c7b52cca980.tar.bz2 |
- Patch #894614 by boombatower: PHP incompatibility message is not complete.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 868bd4315..736fa5e70 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -985,6 +985,7 @@ function _system_modules_build_row($info, $extra) { if (version_compare(phpversion(), $info['php']) < 0) { $compatible = FALSE; $status_short .= t('Incompatible with this version of PHP'); + $php_required = $info['php']; if (substr_count($info['php'], '.') < 2) { $php_required .= '.*'; } |