From 10f6716566fce9d9c38f3dd99419595b2a1cba4c Mon Sep 17 00:00:00 2001
From: Mate Bartus
Date: Tue, 30 Jun 2015 16:36:34 +0200
Subject: [ticket/13740] Restore original install folder
This reverts commit 934e2821f1cef5e2e21ad6d96f7beb45647ed81c.
PHPBB3-13740
---
phpBB/install/database_update.php | 267 ++++++++++++++++++++++++++++++++++++++
1 file changed, 267 insertions(+)
create mode 100644 phpBB/install/database_update.php
(limited to 'phpBB/install/database_update.php')
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
new file mode 100644
index 0000000000..7ba11c37c4
--- /dev/null
+++ b/phpBB/install/database_update.php
@@ -0,0 +1,267 @@
+
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+
+$update_start_time = time();
+
+/**
+* @ignore
+*/
+define('IN_PHPBB', true);
+define('IN_INSTALL', true);
+$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
+$phpEx = substr(strrchr(__FILE__, '.'), 1);
+
+function phpbb_end_update($cache, $config)
+{
+ $cache->purge();
+
+ $config->increment('assets_version', 1);
+
+?>
+
+
+
+
+
+
+
+
+
+
+