Changeset 2073:9964def5a701 for inc/core
- Timestamp:
- 09/24/13 22:03:30 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/core/class.dc.blog.php
r1743 r2073 2196 2196 2197 2197 # pgSQL uses "FROM" synthax 2198 if ($this->con->driver() != 'mysql' || $this->con->driver() == 'mysqli') {2198 if ($this->con->driver() != 'mysql' && $this->con->driver() != 'mysqli') { 2199 2199 $strReq .= 2200 2200 'FROM '.$this->prefix.'post tp '; … … 2206 2206 2207 2207 # add pgSQL "WHERE" clause 2208 if ($this->con->driver() != 'mysql' || $this->con->driver() == 'mysqli') {2208 if ($this->con->driver() != 'mysql' && $this->con->driver() != 'mysqli') { 2209 2209 $strReq .= 2210 2210 'AND tc.post_id = tp.post_id ';
Note: See TracChangeset
for help on using the changeset viewer.