Ignore:
Timestamp:
2009/03/06 20:21:51 (15 years ago)
Author:
Seasoft
Message:

・PEAR::DB を Ver.1.7.14RC1(2007-11-27)ベースに更改。
・不適切な文字列比較を修正。

 http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=1808&forum=9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/module/DB/storage.php

    r15532 r17877  
    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.