bug:2756 feature:2737 on batch manager use "tag" url parameter instead of re-use "cat"

git-svn-id: http://piwigo.org/svn/trunk@18459 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
mistic100
2012-10-04 14:14:25 +00:00
parent 2a9e479384
commit b5f020ee66
3 changed files with 13 additions and 13 deletions
+11 -11
View File
@@ -104,8 +104,7 @@ if (isset($_POST['submitFilter']))
}
}
}
if (isset($_GET['cat']))
else if (isset($_GET['cat']))
{
if ('caddie' == $_GET['cat'])
{
@@ -113,26 +112,27 @@ if (isset($_GET['cat']))
'prefilter' => 'caddie'
);
}
if ('recent' == $_GET['cat'])
else if ('recent' == $_GET['cat'])
{
$_SESSION['bulk_manager_filter'] = array(
'prefilter' => 'last import'
);
}
if (is_numeric($_GET['cat']))
else if (is_numeric($_GET['cat']))
{
$_SESSION['bulk_manager_filter'] = array(
'category' => $_GET['cat']
);
}
if (strpos($_GET['cat'],'tag-')===0)
}
else if (isset($_GET['tag']))
{
if (is_numeric($_GET['tag']))
{
$_SESSION['bulk_manager_filter']=array();
$_SESSION['bulk_manager_filter']['tags'] = array(intval(substr($_GET['cat'],4)));
$_SESSION['bulk_manager_filter']['tag_mode'] = 'AND';
$_SESSION['bulk_manager_filter'] = array(
'tags' => array($_GET['tag']),
'tag_mode' => 'AND',
);
}
}