[Mapbender-commits] r7217 - trunk/mapbender/http/php
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Sat Dec 11 10:06:07 EST 2010
Author: apour
Date: 2010-12-11 07:06:07 -0800 (Sat, 11 Dec 2010)
New Revision: 7217
Modified:
trunk/mapbender/http/php/mod_editFilteredUser.php
Log:
security patch irv done
Modified: trunk/mapbender/http/php/mod_editFilteredUser.php
===================================================================
--- trunk/mapbender/http/php/mod_editFilteredUser.php 2010-12-11 15:05:34 UTC (rev 7216)
+++ trunk/mapbender/http/php/mod_editFilteredUser.php 2010-12-11 15:06:07 UTC (rev 7217)
@@ -18,14 +18,43 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+$e_id="editFilteredUser";
+
require_once(dirname(__FILE__)."/../php/mb_validatePermission.php");
/*
- * @security_patch irv open
+ * @security_patch irv done
*/
-security_patch_log(__FILE__,__LINE__);
-import_request_variables("PG");
-$e_id="editFilteredUser";
+//security_patch_log(__FILE__,__LINE__);
+//import_request_variables("PG");
+$selected_user = $_POST["selected_user"];
+$name = $_POST["name"];
+$firstname = $_POST["firstname"];
+$lastname = $_POST["lastname"];
+$academic_title = $_POST["academic_title"];
+$password = $_POST["password"];
+$password_plain = $_POST["password_plain"];
+$v_password = $_POST["v_password"];
+$description = $_POST["description"];
+$email = $_POST["email"];
+$phone = $_POST["phone"];
+$facsimile = $_POST["facsimile"];
+$street = $_POST["street"];
+$housenumber = $_POST["housenumber"];
+$delivery_point = $_POST["delivery_point"];
+$postal_code = $_POST["postal_code"];
+$city = $_POST["city"];
+$organization = $_POST["organization"];
+$department = $_POST["department"];
+$position = $_POST["position"];
+$country = $_POST["country"];
+$owner_name = $_POST["owner_name"];
+$owner_id = $_POST["owner_id"];
+$login_count = $_POST["login_count"];
+$resolution = $_POST["resolution"];
+$action = $_POST["action"];
+
+
require_once(dirname(__FILE__)."/../classes/class_user.php");
$myUser = true;
More information about the Mapbender_commits
mailing list