avatar

582

Fix an annoying (detected post-release) condition where the 'current' tab can get duplicated, if it exists in the database.

by mrs, 28 Jul, 2008 07:03 PM
564 582  
4747 
4848     do {
4949       tabName = JConfig.queryDisplayProperty("tabs.name." + i++);
50       if (tabName != null) {
50       if (tabName != null && mList.findCategory(tabName) == null) {
5151         mList.add(new AuctionListHolder(tabName));
5252       }
5353     } while (tabName != null);