aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-06-19 23:02:59 +0200
committerNils Adermann <naderman@naderman.de>2011-06-19 23:02:59 +0200
commit67fde80fbbfc219352ad19124446bb63451306eb (patch)
tree826917c82ccf2b7c5830cb56c0cecad9d74e1d4c /phpBB/install/index.php
parentd3f1b6029248d20d4a3a4bc2f3684f8aad88559d (diff)
downloadforums-67fde80fbbfc219352ad19124446bb63451306eb.tar
forums-67fde80fbbfc219352ad19124446bb63451306eb.tar.gz
forums-67fde80fbbfc219352ad19124446bb63451306eb.tar.bz2
forums-67fde80fbbfc219352ad19124446bb63451306eb.tar.xz
forums-67fde80fbbfc219352ad19124446bb63451306eb.zip
[ticket/10223] Replace spaces with tabs
PHPBB3-10223
Diffstat (limited to 'phpBB/install/index.php')
-rw-r--r--phpBB/install/index.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index 5189cbfc8e..f534980389 100644
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -26,19 +26,19 @@ if (version_compare(PHP_VERSION, '4.3.3') < 0)
function phpbb_require_updated($path, $optional = false)
{
- global $phpbb_root_path;
-
- $new_path = $phpbb_root_path . 'install/update/new/' . $path;
- $old_path = $phpbb_root_path . $path;
-
- if (file_exists($new_path))
- {
- require($new_path);
- }
- else if (!$optional || file_exists($old_path))
- {
- require($old_path);
- }
+ global $phpbb_root_path;
+
+ $new_path = $phpbb_root_path . 'install/update/new/' . $path;
+ $old_path = $phpbb_root_path . $path;
+
+ if (file_exists($new_path))
+ {
+ require($new_path);
+ }
+ else if (!$optional || file_exists($old_path))
+ {
+ require($old_path);
+ }
}
phpbb_require_updated('includes/startup.' . $phpEx);