[Cs-webapplibs-commits] SF.net SVN: cs-webapplibs:[147] trunk/0.3/db_types/cs_phpDB__pgsql.class. p
Status: Beta
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-09-08 14:24:25
|
Revision: 147 http://cs-webapplibs.svn.sourceforge.net/cs-webapplibs/?rev=147&view=rev Author: crazedsanity Date: 2009-09-08 14:24:15 +0000 (Tue, 08 Sep 2009) Log Message: ----------- Fix some rather silly wording in an error. /db_types/cs_phpDB__pgsql.class.php: * set_db_info(): -- change wording about number of required fields to be more useful. Modified Paths: -------------- trunk/0.3/db_types/cs_phpDB__pgsql.class.php Modified: trunk/0.3/db_types/cs_phpDB__pgsql.class.php =================================================================== --- trunk/0.3/db_types/cs_phpDB__pgsql.class.php 2009-08-31 14:52:28 UTC (rev 146) +++ trunk/0.3/db_types/cs_phpDB__pgsql.class.php 2009-09-08 14:24:15 UTC (rev 147) @@ -127,8 +127,8 @@ $this->paramsAreSet = TRUE; } else { - throw new exception(__METHOD__ .": required count (". $requiredCount - .") does not match required number of fields (". count($required) .")"); + throw new exception(__METHOD__ .": given number of fields (". $requiredCount + .") does not match required number of fields (". count($required) .")::: ". $this->gfObj->debug_print($params,0)); } }//end set_db_info() //========================================================================= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |