Ignore:
Timestamp:
2010/09/10 15:55:18 (14 years ago)
Author:
nanasess
bzr:base-revision:
ohkouchi@loop-az.jp-20100909090512-qyyhgu9bnz0iwjna
bzr:committer:
Kentaro Ohkouchi <ohkouchi@loop-az.jp>
bzr:file-ids:

data/class/SC_Query.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2FSC_Query.php
bzr:mapping-version:
v4
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
ohkouchi@loop-az.jp-20100910065515-7sjxpvwdmz0unr0t
bzr:revno:
2285
bzr:revprop:branch-nick:
branches/version-2_5-dev
bzr:root:
branches/version-2_5-dev
bzr:timestamp:
2010-09-10 15:55:15.907000065 +0900
bzr:user-agent:
bzr2.2.0+bzr-svn1.0.3
svn:original-date:
2010-09-10T06:55:15.907000Z
Message:

SQL生成用のフィールドをインスタンス生成時に初期化するよう修正(#565)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/SC_Query.php

    r18801 r18802  
    7474        $this->force_run = $force_run; 
    7575        $this->where = ""; 
     76        $this->order = ""; 
     77        $this->groupby = ""; 
     78        $this->option = ""; 
    7679    } 
    7780 
     
    8891            $this->instance =& new SC_Query($dsn, $force_run, $new); 
    8992        } 
     93        $this->instance->where = ""; 
     94        $this->instance->order = ""; 
     95        $this->instance->groupby = ""; 
     96        $this->instance->option = ""; 
    9097        return $this->instance; 
    9198    } 
Note: See TracChangeset for help on using the changeset viewer.