1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-10 16:35:35 +02:00

Merge remote-tracking branch 'callumacrae/ticket/10785' into develop

* callumacrae/ticket/10785:
  [ticket/10785] Fixed illegal use of $_REQUEST in develop/fill.php.
This commit is contained in:
Andreas Fischer
2012-04-11 14:34:03 +02:00

View File

@ -39,8 +39,8 @@ $posts_per_topic = 500;
// general vars // general vars
$mode = (isset($_REQUEST['mode'])) ? $_REQUEST['mode'] : 'generate'; $mode = request_var('mode', 'generate');
$start = (isset($_REQUEST['start'])) ? intval($_REQUEST['start']) : 0; $start = request_var('start', 0);
switch ($mode) switch ($mode)
{ {