1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 06:38:00 +02:00

DownloadsL Pagination (next/prev) fix. SEF Url methods updated.

This commit is contained in:
Cameron
2017-04-12 15:38:09 -07:00
parent 9e91201103
commit 8d077da40e
3 changed files with 21 additions and 16 deletions

View File

@@ -417,15 +417,18 @@ $columnInfo = array(
}
}
// optional
public function init()
{
$this->action = vartrue($_GET['mode']);
$this->subAction = vartrue($_GET['action']);
$this->id = vartrue($_GET['id']);
$this->action = $this->getMode(); // vartrue($_GET['mode']);
$this->subAction = $this->getAction(); // vartrue($_GET['action']);
$this->id = $this->getId(); // vartrue($_GET['id']);
$this->observe();