Changeset 491
- Timestamp:
- 02/06/10 11:15:30 (13 years ago)
- Location:
- dev
- Files:
-
- 1 removed
- 32 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/admin/feed_fetcher.php
r450 r491 90 90 $http->set_useragent("EDK Feedfetcher ".$feedversion); 91 91 $http->set_timeout(120); 92 $http->set_cookie('PHPSESSID', 'a2bb4a7485eaba91b9d8db6aafd8ec5d');93 92 $data = $http->get_content(); 94 93 // $data = trim(preg_replace('<<!--.*?-->>', '', $data)); // remove <!-- Cached --> message, else it will break gzinflate -
dev/common/includes/class.db.mysqli.php
r436 r491 21 21 if (!$this->id_ = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, DB_PORT)) 22 22 die("Unable to connect to mysql database."); 23 $this->id_->set_charset('utf8');23 if(method_exists($this->id_,'set_charset')) $this->id_->set_charset('utf8'); 24 24 } 25 25 else … … 27 27 if (!$this->id_ = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME)) 28 28 die("Unable to connect to mysql database."); 29 $this->id_->set_charset('utf8');29 if(method_exists($this->id_,'set_charset')) $this->id_->set_charset('utf8'); 30 30 } 31 31 -
dev/common/includes/globals.php
r490 r491 10 10 // current version: major.minor.sub 11 11 // unpair numbers for minor = development version 12 define('KB_VERSION', '2.0.1 0');12 define('KB_VERSION', '2.0.11'); 13 13 define('KB_RELEASE', '(Dominion)'); 14 14 -
dev/cron/cron_import.php
r461 r491 10 10 11 11 if(function_exists("set_time_limit")) 12 set_time_limit(0);12 @set_time_limit(0); 13 13 14 14 // current working directory minus last 5 letters of string ("/cron")