diff --git a/cake/libs/model/datasources/dbo_source.php b/cake/libs/model/datasources/dbo_source.php index a3304f41cad..b9e928cbfc8 100755 --- a/cake/libs/model/datasources/dbo_source.php +++ b/cake/libs/model/datasources/dbo_source.php @@ -68,7 +68,7 @@ class DboSource extends DataSource { * @var boolean. * @access public */ - public $cacheMethods = true ; + public $cacheMethods = true; /** * Print full query debug info? @@ -332,7 +332,7 @@ function value($data, $column = null) { } } elseif (in_array($data, array('{$__cakeID__$}', '{$__cakeForeignKey__$}'), true)) { return $data; - } + } if ($data === null || (is_array($data) && empty($data))) { return 'NULL'; @@ -482,7 +482,7 @@ protected function _execute($sql, $params = array()) { $this->error = $e->getMessage(); return false; } - + } /**