[Mapbender-commits] r7102 - trunk/mapbender/http

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed Nov 10 10:10:44 EST 2010


Author: apour
Date: 2010-11-10 07:10:44 -0800 (Wed, 10 Nov 2010)
New Revision: 7102

Modified:
   trunk/mapbender/http/index.php
Log:
Added $_FILE to the security_patch_log function.

Modified: trunk/mapbender/http/index.php
===================================================================
--- trunk/mapbender/http/index.php	2010-11-09 10:40:03 UTC (rev 7101)
+++ trunk/mapbender/http/index.php	2010-11-10 15:10:44 UTC (rev 7102)
@@ -21,7 +21,7 @@
 function security_patch_log($file,$line) {
     $h = fopen("../log/security_patch.log","a+");
     if($h) {
-	fwrite($h,date("Y.m.d H:i")." FILE : ".$file." | LINE : ".$line." | POST : ".implode(",",array_keys($_POST))." | GET : ".implode(",",array_keys($_GET))." |\n");
+	fwrite($h,date("Y.m.d H:i")." FILE : ".$file." | LINE : ".$line." | POST : ".implode(",",array_keys($_POST))." | GET : ".implode(",",array_keys($_GET))." | FILE : ".implode(",",array_keys($_FILE))." |\n");
 	fclose($h);
     }
 }



More information about the Mapbender_commits mailing list