[limb-svn] r6255 - 2.x/trunk/src/tree
svn at limb-project.com
svn at limb-project.com
Sat Sep 1 18:53:36 MSD 2007
Author: 3dmax
Date: 2007-09-01 18:53:36 +0400 (Sat, 01 Sep 2007)
New Revision: 6255
URL: http://fisheye.limb-project.com/changelog/limb/?cs=6255
Modified:
2.x/trunk/src/tree/materialized_path_tree.class.php
Log:
-- SQL-injection fix
Modified: 2.x/trunk/src/tree/materialized_path_tree.class.php
===================================================================
--- 2.x/trunk/src/tree/materialized_path_tree.class.php 2007-08-31 13:22:57 UTC (rev 6254)
+++ 2.x/trunk/src/tree/materialized_path_tree.class.php 2007-09-01 14:53:36 UTC (rev 6255)
@@ -503,6 +503,8 @@
$path_array = explode($delimiter, $path);
+ $path_array = array_map("mysql_escape_string", $path_array);
+
if(end($path_array) == '')
array_pop($path_array);
More information about the limb-svn
mailing list