aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorGaëtan Muller <m.gaetan89@gmail.com>2015-02-03 20:56:48 +0100
committerGaëtan Muller <m.gaetan89@gmail.com>2015-02-03 20:56:48 +0100
commit52446c8327426c59da74257885fd09591c9e1fb3 (patch)
tree6fc334e235dbe4bc3738a3901e8bad1831618a24 /phpBB/install
parentabcb2680eec86dc8016c489ebc7362e29be9e4df (diff)
downloadforums-52446c8327426c59da74257885fd09591c9e1fb3.tar
forums-52446c8327426c59da74257885fd09591c9e1fb3.tar.gz
forums-52446c8327426c59da74257885fd09591c9e1fb3.tar.bz2
forums-52446c8327426c59da74257885fd09591c9e1fb3.tar.xz
forums-52446c8327426c59da74257885fd09591c9e1fb3.zip
[ticket/13455] Remove `request_var()` references from comments
PHPBB3-13455
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/install_convert.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php
index 47c05ef491..b1c52a336e 100644
--- a/phpBB/install/install_convert.php
+++ b/phpBB/install/install_convert.php
@@ -428,7 +428,7 @@ class install_convert extends module
// Default URL of the old board
// @todo Are we going to use this for attempting to convert URL references in posts, or should we remove it?
// -> We should convert old urls to the new relative urls format
- // $src_url = request_var('src_url', 'Not in use at the moment');
+ // $src_url = $request->variable('src_url', 'Not in use at the moment');
// strip trailing slash from old forum path
$forum_path = (strlen($forum_path) && $forum_path[strlen($forum_path) - 1] == '/') ? substr($forum_path, 0, -1) : $forum_path;