remove admin only flags for sections and locale

This commit is contained in:
j 2014-03-05 13:39:25 +00:00
commit 550ced514d
6 changed files with 6 additions and 8 deletions

View file

@ -4,8 +4,8 @@ pandora.ui.sectionButtons = function(section) {
var that = Ox.ButtonGroup({
buttons: [
{id: 'items', title: Ox._(pandora.site.itemName.plural)},
{id: 'edits', title: Ox._('Edits'), disabled: pandora.user.level != 'admin'},
{id: 'texts', title: Ox._('Texts'), disabled: pandora.user.level != 'admin'}
{id: 'edits', title: Ox._('Edits')},
{id: 'texts', title: Ox._('Texts')}
],
id: 'sectionButtons',
selectable: true,