mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
[ticket/10785] Fixed illegal use of $_REQUEST in develop/fill.php.
PHPBB3-10785
This commit is contained in:
@@ -39,8 +39,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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user