Changeset 24834 for trunk/admin/batch_manager_global.php
- Timestamp:
- Oct 10, 2013, 1:07:45 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/batch_manager_global.php
r24526 r24834 113 113 add_tags($tag_ids, $collection); 114 114 115 if (' with notag' == $page['prefilter'])115 if ('no_tag' == $page['prefilter']) 116 116 { 117 117 redirect($redirect_url); … … 150 150 151 151 // let's refresh the page because we the current set might be modified 152 if (' with noalbum' == $page['prefilter'])152 if ('no_album' == $page['prefilter']) 153 153 { 154 154 redirect($redirect_url); 155 155 } 156 156 157 if (' with no virtualalbum' == $page['prefilter'])157 if ('no_virtual_album' == $page['prefilter']) 158 158 { 159 159 $category_info = get_cat_info($_POST['associate']); … … 174 174 175 175 // let's refresh the page because we the current set might be modified 176 if (' with noalbum' == $page['prefilter'])176 if ('no_album' == $page['prefilter']) 177 177 { 178 178 redirect($redirect_url); 179 179 } 180 180 181 if (' with no virtualalbum' == $page['prefilter'])181 if ('no_virtual_album' == $page['prefilter']) 182 182 { 183 183 $category_info = get_cat_info($_POST['move']); … … 436 436 array('ID' => 'caddie', 'NAME' => l10n('Caddie')), 437 437 array('ID' => 'favorites', 'NAME' => l10n('Your favorites')), 438 array('ID' => 'last 439 array('ID' => ' with noalbum', 'NAME' => l10n('With no album')),440 array('ID' => ' with notag', 'NAME' => l10n('With no tag')),438 array('ID' => 'last_import', 'NAME' => l10n('Last import')), 439 array('ID' => 'no_album', 'NAME' => l10n('With no album')), 440 array('ID' => 'no_tag', 'NAME' => l10n('With no tag')), 441 441 array('ID' => 'duplicates', 'NAME' => l10n('Duplicates')), 442 array('ID' => 'all 442 array('ID' => 'all_photos', 'NAME' => l10n('All')) 443 443 ); 444 444 … … 446 446 { 447 447 array_push($prefilters, 448 array('ID' => ' with no virtualalbum', 'NAME' => l10n('With no virtual album'))448 array('ID' => 'no_virtual_album', 'NAME' => l10n('With no virtual album')) 449 449 ); 450 450 } … … 461 461 'START' => $page['start'], 462 462 'U_DISPLAY'=>$base_url.get_query_string_diff(array('display')), 463 'F_ACTION'=>$base_url.get_query_string_diff(array('cat','start','tag' )),463 'F_ACTION'=>$base_url.get_query_string_diff(array('cat','start','tag','filter')), 464 464 ) 465 465 );
Note: See TracChangeset
for help on using the changeset viewer.