diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-02-25 13:36:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-02-25 13:36:29 +0000 |
commit | 068adf05b53e4dd4715c5f23a9455d9d3af65e84 (patch) | |
tree | 3efd640d77570e25f313da93aa0ade2185465f43 /modules/system | |
parent | 094e99901319f923a900330280fd127603c91635 (diff) | |
download | brdo-068adf05b53e4dd4715c5f23a9455d9d3af65e84.tar.gz brdo-068adf05b53e4dd4715c5f23a9455d9d3af65e84.tar.bz2 |
- Patch #243524 by Dave Reid, chx: display INFO_ALL output when calling system_php().
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 25f705665..84a6bbb67 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1808,7 +1808,7 @@ function system_run_cron() { * Menu callback: return information about PHP. */ function system_php() { - phpinfo(INFO_ALL); + phpinfo(); exit(); } |