aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2010-11-20 17:56:17 +0100
committerNils Adermann <naderman@naderman.de>2010-11-20 17:56:17 +0100
commit67593824d43a081d9b9301bcd40a32a17c5504a7 (patch)
tree1b643fd394ef3f9fd54fdfce54f73863a1c0b819 /phpBB/install
parent635752fafc275c091cfc130e2f7b5e2ca5fe91d5 (diff)
parentd2778e67eaff5453042e6fd851b7d678141be58d (diff)
downloadforums-67593824d43a081d9b9301bcd40a32a17c5504a7.tar
forums-67593824d43a081d9b9301bcd40a32a17c5504a7.tar.gz
forums-67593824d43a081d9b9301bcd40a32a17c5504a7.tar.bz2
forums-67593824d43a081d9b9301bcd40a32a17c5504a7.tar.xz
forums-67593824d43a081d9b9301bcd40a32a17c5504a7.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [prep-release-3.0.8] Incrementing version number to 3.0.8 and update changelog [ticket/9903] Script for detecting potentially malicious flash bbcodes [ticket/9904] Update WebPI Parameters.xml to work with WebMatrix. [ticket/9903] Fix XSS in BBcode-parser's Flash-BBcode.
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/database_update.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 5fc909c414..bfd7f58abd 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -923,6 +923,8 @@ function database_update_info()
'3.0.7' => array(),
// No changes from 3.0.7-PL1 to 3.0.8-RC1
'3.0.7-PL1' => array(),
+ // No changes from 3.0.8-RC1 to 3.0.8
+ '3.0.8-RC1' => array(),
);
}
@@ -1861,6 +1863,10 @@ function change_database_data(&$no_updates, $version)
$no_updates = false;
break;
+
+ // No changes from 3.0.8-RC1 to 3.0.8
+ case '3.0.8-RC1':
+ break;
}
}