aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop/fill.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/develop/fill.php')
-rw-r--r--phpBB/develop/fill.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/phpBB/develop/fill.php b/phpBB/develop/fill.php
index e0d054d073..e3b986e163 100644
--- a/phpBB/develop/fill.php
+++ b/phpBB/develop/fill.php
@@ -38,8 +38,8 @@ $posts_per_topic = 500;
// general vars
-$mode = (isset($_REQUEST['mode'])) ? $_REQUEST['mode'] : 'generate';
-$start = (isset($_REQUEST['start'])) ? intval($_REQUEST['start']) : 0;
+$mode = request_var('mode', 'generate');
+$start = request_var('start', 0);
switch ($mode)
{
@@ -183,5 +183,3 @@ function rndm_username()
return $usernames[array_rand($usernames)];
}
-
-?> \ No newline at end of file