[Mapbender-commits] r2302 - branches/2.5/http/php
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Wed Mar 26 08:58:49 EDT 2008
Author: verenadiewald
Date: 2008-03-26 08:58:49 -0400 (Wed, 26 Mar 2008)
New Revision: 2302
Modified:
branches/2.5/http/php/mod_wfs_edit.php
Log:
removed function stripslashes for f_form_element_html
Modified: branches/2.5/http/php/mod_wfs_edit.php
===================================================================
--- branches/2.5/http/php/mod_wfs_edit.php 2008-03-26 12:57:12 UTC (rev 2301)
+++ branches/2.5/http/php/mod_wfs_edit.php 2008-03-26 12:58:49 UTC (rev 2302)
@@ -273,7 +273,7 @@
echo "<td><input name='f_edit".$cnt."' type='checkbox'";
if($row["f_edit"] == 1){ echo " checked"; }
echo "></td>";
- echo "<td><textarea name='f_form_element_html".$cnt."' cols='15' rows='1' >".stripslashes($row["f_form_element_html"])."</textarea></td>";
+ echo "<td><textarea name='f_form_element_html".$cnt."' cols='15' rows='1' >".$row["f_form_element_html"]."</textarea></td>";
echo "<td><input name='f_auth_varname".$cnt."' type='text' size='8' value='".$row["f_auth_varname"]."'></td>";
echo "</tr>";
$cnt++;
More information about the Mapbender_commits
mailing list