when clicking on configuration page of admin panel, the general section in

the menu was not displayed as the focused one.


git-svn-id: http://piwigo.org/svn/trunk@515 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
z0rglub 2004-09-04 09:19:36 +00:00
commit 1f8b6b0790

View file

@ -232,7 +232,7 @@ $template->assign_vars(
$base_url = PHPWG_ROOT_PATH.'admin.php?page=configuration&section=';
foreach (array_keys($sections) as $section)
{
if (isset($_GET['section']) and $_GET['section'] == $section)
if ($section == $page['section'])
{
$class = 'opened';
}