Backport(バックポート) #1236
opDoctrineQuery::specifyConnection() doesn't work
Start date:
2010-06-10
Due date:
% Done:
0%
Description
Overview (現象)¶
opDoctrineQuery::specifyConnection() で指定した接続が利用されず、デフォルトの接続が利用される。
Causes (原因)¶
lib/util/opDoctrineQuery.class.php
opDoctrineQuery::preQuery() で $this->conn に指定した接続を入れているが、$this->_conn を書き換えないと利用されないため。
132 public function preQuery() 133 { 134 if ($this->specifiedConnection) 135 { 136 $this->conn = $this->specifiedConnection; 137 }
Way to fix (修正内容)¶
$this->_conn に修正する。
Related issues
History
#1 Updated by Yuki Yamashita about 14 years ago
- Target version changed from OpenPNE 3.4.6 to OpenPNE 3.2.7
#2 Updated by Shinichi Urabe about 14 years ago
- Status changed from New(新規) to Invalid(無効)
3.2にはこのソースがありません