Merge pull request #391 from TheSerapher/issue-387
Hard coded block limit for pool statistics
This commit is contained in:
commit
74aeb25fec
@ -5,7 +5,7 @@ if (!defined('SECURITY')) die('Hacking attempt');
|
|||||||
if (!$user->isAuthenticated()) header("Location: index.php?page=home");
|
if (!$user->isAuthenticated()) header("Location: index.php?page=home");
|
||||||
|
|
||||||
// Grab the last blocks found
|
// Grab the last blocks found
|
||||||
empty($_REQUEST['limit']) ? $iLimit = 20 : $iLimit = $_REQUEST['limit'];
|
$iLimit = 20;
|
||||||
$aBlocksFoundData = $statistics->getBlocksFound($iLimit);
|
$aBlocksFoundData = $statistics->getBlocksFound($iLimit);
|
||||||
|
|
||||||
// Propagate content our template
|
// Propagate content our template
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user