partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 894f8b5e5ec3d8be9913e8e491f3163d4afdea7e
parent e7aa9de039626fe0dd7a40f1073d9bdd5694260e
Author: Felicitus <felicitus@felicitus.org>
Date:   Tue, 16 Aug 2011 05:43:11 +0200

Added allow_url_fopen to the variable list

Diffstat:
Msrc/de/RaumZeitLabor/PartKeepr/System/SystemService.php | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/de/RaumZeitLabor/PartKeepr/System/SystemService.php b/src/de/RaumZeitLabor/PartKeepr/System/SystemService.php @@ -42,6 +42,8 @@ class SystemService extends Service { $aData[] = new SystemInformationRecord("post_max_size", ini_get("post_max_size"), "PHP"); $aData[] = new SystemInformationRecord("upload_max_filesize", ini_get("upload_max_filesize"), "PHP"); $aData[] = new SystemInformationRecord("post_max_size", ini_get("post_max_size"), "PHP"); + $aData[] = new SystemInformationRecord("allow_url_fopen", ini_get("allow_url_fopen"), "PHP"); + // TODO: add information about post max, file upload size, timeout, memory limit return array("data" => $aData); }