From aa3e4bd7b1e65136a2122faceb0630c95fab71fa Mon Sep 17 00:00:00 2001 From: e107steved Date: Sat, 26 Dec 2009 23:20:21 +0000 Subject: [PATCH] Remove debug code --- e107_handlers/mysql_class.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/e107_handlers/mysql_class.php b/e107_handlers/mysql_class.php index b9dad9112..0fd2cf2a5 100644 --- a/e107_handlers/mysql_class.php +++ b/e107_handlers/mysql_class.php @@ -9,8 +9,8 @@ * mySQL Handler * * $Source: /cvs_backup/e107_0.8/e107_handlers/mysql_class.php,v $ - * $Revision: 1.71 $ - * $Date: 2009-12-25 10:25:11 $ + * $Revision: 1.72 $ + * $Date: 2009-12-26 23:20:21 $ * $Author: e107steved $ */ @@ -20,7 +20,7 @@ * * @package e107 * @subpackage e107_handlers - * @version $Id: mysql_class.php,v 1.71 2009-12-25 10:25:11 e107steved Exp $; + * @version $Id: mysql_class.php,v 1.72 2009-12-26 23:20:21 e107steved Exp $; * * @todo separate cache for db type tables */ @@ -1570,7 +1570,6 @@ class e_db_mysql //echo "Check: {$defFile}, {$tableName}
"; if ($this->loadTableDef($defFile, $tableName)) { - echo "Found: {$defFile}, {$tableName}
"; $found = TRUE; break; } @@ -1602,7 +1601,7 @@ class e_db_mysql // Read the file using the array handler routines // File structure is a nested array - first level is table name, second level is either FALSE (for do nothing) or array(_FIELD_DEFS => array(), _NOTNULL => array()) $temp = file_get_contents($defFile); - // Strip any comments (only /*...*/ supported + // Strip any comments (only /*...*/ supported) $temp = preg_replace("#\/\*.*?\*\/#mis", '', $temp); //echo "Check: {$defFile}, {$tableName}
"; if ($temp !== FALSE)