[Cs-content-commits] SF.net SVN: cs-content:[411] trunk/1.0/cs_globalFunctions.class.php
PHP Templating & Includes System
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-07-22 04:54:50
|
Revision: 411 http://cs-content.svn.sourceforge.net/cs-content/?rev=411&view=rev Author: crazedsanity Date: 2009-07-22 04:54:48 +0000 (Wed, 22 Jul 2009) Log Message: ----------- Fix a bad quoting issue. /cs_globalFunctions.class.php: * string_from_array(): -- (style=select) don't pass the forceSqlQuotes to create_list(). Modified Paths: -------------- trunk/1.0/cs_globalFunctions.class.php Modified: trunk/1.0/cs_globalFunctions.class.php =================================================================== --- trunk/1.0/cs_globalFunctions.class.php 2009-07-21 03:21:21 UTC (rev 410) +++ trunk/1.0/cs_globalFunctions.class.php 2009-07-22 04:54:48 UTC (rev 411) @@ -282,7 +282,7 @@ if(!is_numeric($value) && isset($separator)) { $value = "'". $value ."'"; } - $retval = $this->create_list($retval, $field . $separator . $value, " $delimiter ", $this->forceSqlQuotes); + $retval = $this->create_list($retval, $field . $separator . $value, " $delimiter "); } } break; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |