Changeset 117
- Timestamp:
- 03/21/06 11:11:50 (3 years ago)
- Files:
-
- trunk/lib/jelix/core/response/jResponseRedirect.class.php (modified) (2 diffs)
- trunk/lib/jelix/dao/jDAOBase.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/jelix/core/response/jResponseRedirect.class.php
r95 r117 32 32 public function output(){ 33 33 if(count($this->_errorMessage)) return false; 34 header ('location: '.jUrl::get($this->action, $this-> selectorParams));34 header ('location: '.jUrl::get($this->action, $this->params)); 35 35 return true; 36 36 } … … 38 38 public function fetch(){ 39 39 if(count($this->_errorMessage)) return false; 40 return 'location: '.jUrl::get($this->action, $this-> selectorParams);40 return 'location: '.jUrl::get($this->action, $this->params); 41 41 } 42 42 trunk/lib/jelix/dao/jDAOBase.class.php
r88 r117 132 132 throw new jException('jelix~dao.error.keys.missing'); 133 133 } 134 $q = 'DELETE FROM '.$this->_tables[$this->_primaryTable]['realname'].' where';134 $q = 'DELETE FROM '.$this->_tables[$this->_primaryTable]['realname'].' '; 135 135 $q.= $this->_getPkWhereClauseForNonSelect($keys); 136 136 return $this->_conn->exec ($q);
