Ignore:
Timestamp:
2010/03/11 10:35:11 (14 years ago)
Author:
kajiwara
Message:

正式版にナイトリービルド版をマージしてみるテスト

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tmp/version-2_5-test/data/module/DB/storage.php

    r15532 r18609  
    1717 * @package    DB 
    1818 * @author     Stig Bakken <stig@php.net> 
    19  * @copyright  1997-2005 The PHP Group 
     19 * @copyright  1997-2007 The PHP Group 
    2020 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 
    2121 * @version    CVS: $Id$ 
     
    3737 * @package    DB 
    3838 * @author     Stig Bakken <stig@php.net> 
    39  * @copyright  1997-2005 The PHP Group 
     39 * @copyright  1997-2007 The PHP Group 
    4040 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 
    41  * @version    Release: @package_version@ 
     41 * @version    Release: 1.7.14RC1 
    4242 * @link       http://pear.php.net/package/DB 
    4343 */ 
     
    294294    { 
    295295        $classname = strtolower(get_class($this)); 
    296         $obj =& new $classname($table); 
     296        $obj = new $classname($table); 
    297297        foreach ($data as $name => $value) { 
    298298            $obj->_properties[$name] = true; 
     
    446446    function store() 
    447447    { 
     448        $params = array(); 
     449        $vars = array(); 
    448450        foreach ($this->_changes as $name => $foo) { 
    449451            $params[] = &$this->$name; 
Note: See TracChangeset for help on using the changeset viewer.