partkeepr

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

commit d0f04a47cfe7a05ec096e1cb39e52ddb3f8dfe27
parent b9c2161d07b1e3fe7842906d1e888c82d4f93222
Author: Felicitus <felicitus@felicitus.org>
Date:   Wed,  4 Jul 2012 20:06:41 +0200

Removed duplicate entry

Diffstat:
Msrc/backend/PartKeepr/System/SystemService.php | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/src/backend/PartKeepr/System/SystemService.php b/src/backend/PartKeepr/System/SystemService.php @@ -30,7 +30,6 @@ class SystemService extends Service { $aData[] = new SystemInformationRecord("memory_limit", ini_get("memory_limit"), "PHP"); $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"); $aData[] = new SystemInformationRecord("max_execution_time", ini_get("max_execution_time"), "PHP"); $aData[] = new SystemInformationRecord("APC enabled", (extension_loaded("apc") ? PartKeepr::i18n("Yes") : PartKeepr::i18n("No")), "PHP");