|
From: Ulf E. <ulf...@us...> - 2005-05-24 20:48:01
|
Update of /cvsroot/phpbt/phpbt/inc/pear In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16014 Modified Files: DB.php Log Message: Update to PEAR DB 1.7.6 Index: DB.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/pear/DB.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- DB.php 11 Oct 2002 20:54:43 -0000 1.2 +++ DB.php 24 May 2005 20:47:49 -0000 1.3 @@ -1,170 +1,409 @@ <?php -/* vim: set expandtab tabstop=4 shiftwidth=4: */ -// +----------------------------------------------------------------------+ -// | PHP Version 4 | -// +----------------------------------------------------------------------+ -// | Copyright (c) 1997-2002 The PHP Group | -// +----------------------------------------------------------------------+ -// | This source file is subject to version 2.02 of the PHP license, | -// | that is bundled with this package in the file LICENSE, and is | -// | available at through the world-wide-web at | -// | http://www.php.net/license/2_02.txt. | [...1737 lines suppressed...] { - for (reset($arr); $key = key($arr); next($arr)) { + foreach ($arr as $key => $value) { $this->$key = &$arr[$key]; } } + + // }}} } +// }}} + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * End: + */ + ?> |