mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
set currenttab from GET if available
This commit is contained in:
parent
61db1313a3
commit
ed036819e7
|
@ -100,7 +100,7 @@ if($view) {
|
|||
$view->setParam('offset', $offset);
|
||||
$view->setParam('limit', $limit);
|
||||
$view->setParam('onepage', $settings->_onePageMode); // do most navigation by reloading areas of pages with ajax
|
||||
$view->setParam('currenttab', 'folderinfo');
|
||||
$view->setParam('currenttab', isset($_GET['currenttab']) ? $_GET['currenttab'] : "folderinfo");
|
||||
$view($_GET);
|
||||
exit;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user