use correct list name in menu

This commit is contained in:
rolux 2013-08-14 23:30:15 +00:00
parent 34ffd6a29a
commit 6eaf5a84ee
1 changed files with 2 additions and 2 deletions

View File

@ -319,7 +319,7 @@ pandora.ui.mainMenu = function() {
pandora.UI.set({
find: {
conditions: data.checked ? [
{key: 'list', value: data.id.slice(8), operator: '=='}
{key: 'list', value: data.id.slice(8).replace(/\t/g, '_'), operator: '=='}
] : [],
operator: '&'
}
@ -603,7 +603,7 @@ pandora.ui.mainMenu = function() {
previousList = pandora.UI.getPrevious()._list;
if (list != previousList) {
that.uncheckItem(previousList == '' ? 'allitems' : 'viewlist' + previousList.replace(/_/g, Ox.char(9)));
that.checkItem(list == '' ? 'allitems' : 'viewlist' + list.replace(/_/g, Ox.char(9)));
that.checkItem(list == '' ? 'allitems' : 'viewlist' + list.replace(/_/g, '\t'));
}
that[action]('editlist');
that[action]('duplicatelist');