From: x2000habouzit Date: Tue, 12 Oct 2004 21:56:51 +0000 (+0000) Subject: we really don't want to stripslashes here !!! (not while we don't use DB abstractor X-Git-Tag: xorg/old~1304 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=0daccfa91f84efe3f8824d797a03943e231e5a57;p=platal.git we really don't want to stripslashes here !!! (not while we don't use DB abstractor --- diff --git a/include/search.classes.inc.php b/include/search.classes.inc.php index bc76c4c..1335388 100644 --- a/include/search.classes.inc.php +++ b/include/search.classes.inc.php @@ -18,7 +18,7 @@ * Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *************************************************************************** - $Id: search.classes.inc.php,v 1.16 2004-10-12 21:22:47 x2000bedo Exp $ + $Id: search.classes.inc.php,v 1.17 2004-10-12 21:56:51 x2000habouzit Exp $ ***************************************************************************/ require_once("xorg.misc.inc.php"); @@ -87,7 +87,7 @@ class SField { * on met une chaîne vide si le champ n'a pas été complété */ function get_request() { $this->value = - (isset($_REQUEST[$this->fieldFormName]))?trim(stripslashes($_REQUEST[$this->fieldFormName])):''; + (isset($_REQUEST[$this->fieldFormName]))?trim($_REQUEST[$this->fieldFormName]):''; } /** récupérer la clause correspondant au champ dans la clause WHERE de la requête