aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/sqlite.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-07-11 01:54:03 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-07-11 01:54:03 +0200
commiteeb65d2958fcccc1fd2ccfbf9e154b4e30052977 (patch)
tree3b4ca10805dca7b18e64634709f317256611ff49 /phpBB/includes/db/sqlite.php
parenta2918fd98e61db0e7e9885fb546abc024c84d0fc (diff)
parent2d9aa45aefc4d4e4c76edd7763efc2cd97b0801f (diff)
downloadforums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.tar
forums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.tar.gz
forums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.tar.bz2
forums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.tar.xz
forums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/9637] Do not cache SQL server version in all cases [ticket/9629] Allow style.php to retrieve its session ID from cookies [ticket/9678] Flash attachments are not displayed in subsilver2. [ticket/9677] Subsilver2 is missing the bbcode-helpline for inline-attachments. [ticket/9650] Do not allow banning the anonymous user by username Conflicts: phpBB/styles/subsilver2/template/attachment.html phpBB/styles/subsilver2/template/posting_buttons.html
Diffstat (limited to 'phpBB/includes/db/sqlite.php')
-rw-r--r--phpBB/includes/db/sqlite.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/phpBB/includes/db/sqlite.php b/phpBB/includes/db/sqlite.php
index 288f6e0992..8de72fd394 100644
--- a/phpBB/includes/db/sqlite.php
+++ b/phpBB/includes/db/sqlite.php
@@ -50,19 +50,24 @@ class dbal_sqlite extends dbal
/**
* Version information about used database
* @param bool $raw if true, only return the fetched sql_server_version
+ * @param bool $use_cache if true, it is safe to retrieve the stored value from the cache
* @return string sql server version
*/
- function sql_server_info($raw = false)
+ function sql_server_info($raw = false, $use_cache = true)
{
global $cache;
- if (empty($cache) || ($this->sql_server_version = $cache->get('sqlite_version')) === false)
+ if (!$use_cache || empty($cache) || ($this->sql_server_version = $cache->get('sqlite_version')) === false)
{
$result = @sqlite_query('SELECT sqlite_version() AS version', $this->db_connect_id);
$row = @sqlite_fetch_array($result, SQLITE_ASSOC);
$this->sql_server_version = (!empty($row['version'])) ? $row['version'] : 0;
- $cache->put('sqlite_version', $this->sql_server_version);
+
+ if (!empty($cache) && $use_cache)
+ {
+ $cache->put('sqlite_version', $this->sql_server_version);
+ }
}
return ($raw) ? $this->sql_server_version : 'SQLite ' . $this->sql_server_version;