mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/10785] Fixed illegal use of $_REQUEST in develop/fill.php.
PHPBB3-10785
This commit is contained in:
parent
26e7dd98b7
commit
e0df7d17f9
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue