Changeset 350
- Timestamp:
- 10/19/08 17:43:37 (14 years ago)
- Location:
- dev
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/includes/class.db.php
r343 r350 39 39 function __construct($forceNormal = false) 40 40 { 41 if (DB_USE_MEMCACHE == true && !$forceNormal)41 if (DB_USE_MEMCACHE === true && !$forceNormal) 42 42 { 43 43 $object = new DBMemCachedQuery(); … … 86 86 { 87 87 $object = &$this->getRef($this); 88 if (DB_USE_MEMCACHE == true && !$forceNormal)88 if (DB_USE_MEMCACHE === true && !$forceNormal) 89 89 { 90 90 $object = new DBMemCachedQuery(); … … 132 132 $this->resid_ = mysql_query($sql, $this->dbconn_->id()); 133 133 134 if ($this->resid_ == false)134 if ($this->resid_ === false) 135 135 { 136 136 if (defined('DB_HALTONERROR') && DB_HALTONERROR) -
dev/common/includes/class.db_memcache.php
r343 r350 135 135 $this->resid_ = mysql_query($sql, $this->dbconn_->id()); 136 136 137 if ($this->resid_ == false)137 if ($this->resid_ === false) 138 138 { 139 139 if (DB_HALTONERROR === true) -
dev/common/includes/globals.php
r344 r350 1 1 <?php 2 2 // current subversion revision 3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 3 44$', $match);3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 350 $', $match); 4 4 define('SVN_REV', $match[1]); 5 5 -
dev/mods/history/history.xml
r344 r350 1 1 <?xml version="1.0" ?> 2 2 <history> 3 <changeset> 4 <rev>350</rev> 5 <author>beans</author> 6 <date>19.10.2008</date> 7 <comment> 8 <type>FIX</type> 9 <text> 10 Fixed boolean === 11 </text> 12 </comment> 13 </changeset> 14 <changeset> 15 <rev>349</rev> 16 <author>beans</author> 17 <date>19.10.2008</date> 18 <comment> 19 <type>FIX</type> 20 <text> 21 Fixed the cron scripts 22 </text> 23 </comment> 24 </changeset> 25 <changeset> 26 <rev>348</rev> 27 <author>beans</author> 28 <date>19.10.2008</date> 29 <comment> 30 <type>FIX</type> 31 <text> 32 Updated comments class without IP 33 </text> 34 </comment> 35 </changeset> 36 <changeset> 37 <rev>347</rev> 38 <author>exi</author> 39 <date>18.10.2008</date> 40 <comment> 41 <type>FIX</type> 42 <text> 43 Removed some gfx by owner request. 44 </text> 45 </comment> 46 </changeset> 47 <changeset> 48 <rev>346</rev> 49 <author>beans</author> 50 <date>17.10.2008</date> 51 <comment> 52 <type>FIX</type> 53 <text> 54 Removed fitting mod, built in the core now 55 </text> 56 </comment> 57 </changeset> 58 <changeset> 59 <rev>345</rev> 60 <author>beans</author> 61 <date>17.10.2008</date> 62 <comment> 63 <type>FIX</type> 64 <text> 65 Updated some install data 66 </text> 67 </comment> 68 </changeset> 3 69 <changeset> 4 70 <rev>344</rev>