[CS-Project-svn_notify] SF.net SVN: cs-project: [813] trunk/1.2/includes/content/settings.inc
Brought to you by:
crazedsanity
From: <cra...@us...> - 2008-02-09 03:56:44
|
Revision: 813 http://cs-project.svn.sourceforge.net/cs-project/?rev=813&view=rev Author: crazedsanity Date: 2008-02-08 19:56:41 -0800 (Fri, 08 Feb 2008) Log Message: ----------- Remove debug_print() statements from settings/admin. Modified Paths: -------------- trunk/1.2/includes/content/settings.inc Modified: trunk/1.2/includes/content/settings.inc =================================================================== --- trunk/1.2/includes/content/settings.inc 2008-02-09 03:54:43 UTC (rev 812) +++ trunk/1.2/includes/content/settings.inc 2008-02-09 03:56:41 UTC (rev 813) @@ -147,9 +147,6 @@ unset($data['type'], $data['attributes'], $data['value']); $indexName = strtolower($indexName); - #debug_print($attributes); - - //pull the appropriate template row. $rowName = $defaultRowName; if(strlen($attributes['TYPE'])) { @@ -159,16 +156,12 @@ if($attributes['TYPE'] == 'select' && isset($attributes['OPTIONS'])) { #debug_print(explode('|', $attributes['OPTIONS'])); $tmpOptionList = explode('|', $attributes['OPTIONS']); - debug_print("parsing (". $indexName .")"); - debug_print($tmpOptionList); $optionList = array(); foreach($tmpOptionList as $optionInfo) { $x = explode('=', $optionInfo); $optionList[$x[0]] = $x[1]; } - debug_print($optionList); $optionList = $page->gfObj->array_as_option_list($optionList, $attributes['DEFAULT']); - debug_print($optionList); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |