aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/firebird.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/firebird.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/firebird.php')
-rw-r--r--phpBB/includes/db/firebird.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/includes/db/firebird.php b/phpBB/includes/db/firebird.php
index e554b0f2fb..6f60dd5dad 100644
--- a/phpBB/includes/db/firebird.php
+++ b/phpBB/includes/db/firebird.php
@@ -63,10 +63,19 @@ class dbal_firebird extends dbal
/**
* Version information about used database
* @param bool $raw if true, only return the fetched sql_server_version
+ * @param bool $use_cache forced to false for Interbase
* @return string sql server version
*/
- function sql_server_info($raw = false)
+ function sql_server_info($raw = false, $use_cache = true)
{
+ /**
+ * force $use_cache false. I didn't research why the caching code there is no caching code
+ * but I assume its because the IB extension provides a direct method to access it
+ * without a query.
+ */
+
+ $use_cache = false;
+
if ($this->service_handle !== false && function_exists('ibase_server_info'))
{
return @ibase_server_info($this->service_handle, IBASE_SVC_SERVER_VERSION);