From e5deaae52880e7ddb7efab0b190e5f5c750f55c4 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 12 May 2008 12:19:32 +0000 Subject: - Updated PEAR::DB package to version 1.7.13 --- program/lib/DB/storage.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'program/lib/DB/storage.php') diff --git a/program/lib/DB/storage.php b/program/lib/DB/storage.php index 17bffd155..67318a910 100644 --- a/program/lib/DB/storage.php +++ b/program/lib/DB/storage.php @@ -16,7 +16,7 @@ * @category Database * @package DB * @author Stig Bakken - * @copyright 1997-2005 The PHP Group + * @copyright 1997-2007 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version CVS: $Id$ * @link http://pear.php.net/package/DB @@ -36,9 +36,9 @@ require_once 'DB.php'; * @category Database * @package DB * @author Stig Bakken - * @copyright 1997-2005 The PHP Group + * @copyright 1997-2007 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 - * @version Release: @package_version@ + * @version Release: 1.7.13 * @link http://pear.php.net/package/DB */ class DB_storage extends PEAR @@ -293,7 +293,7 @@ class DB_storage extends PEAR function &create($table, &$data) { $classname = strtolower(get_class($this)); - $obj =& new $classname($table); + $obj = new $classname($table); foreach ($data as $name => $value) { $obj->_properties[$name] = true; $obj->$name = &$value; @@ -445,6 +445,8 @@ class DB_storage extends PEAR */ function store() { + $params = array(); + $vars = array(); foreach ($this->_changes as $name => $foo) { $params[] = &$this->$name; $vars[] = $name . ' = ?'; -- cgit v1.2.3