diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-04-10 01:43:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-04-10 01:43:32 +0000 |
commit | 2275b8ee02938c53e7b02707b08e9a71a1262cf1 (patch) | |
tree | 9b6048fd4c4397406071f3fb2681726a02c04356 | |
parent | 1dc36aa3d325d78829decc146d74857ad5ebb38e (diff) | |
download | brdo-2275b8ee02938c53e7b02707b08e9a71a1262cf1.tar.gz brdo-2275b8ee02938c53e7b02707b08e9a71a1262cf1.tar.bz2 |
- Patch #243524 by christefano: display INFO_ALL output when calling system_php().
-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 318c7f6fa..c144c15d6 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1802,7 +1802,7 @@ function system_run_cron() { * Menu callback: return information about PHP. */ function system_php() { - phpinfo(INFO_GENERAL | INFO_CONFIGURATION); + phpinfo(INFO_ALL); exit(); } |