Quote:
Originally Posted by CommunityZ
I am having problem inside usergroup. When i click on Usergroup => Administrator => i got this (see attachment) Help me.
|
I wouldn't say anything but just one thread above I mentioned exactly this problem. But again ... for you:
Quote:
Originally Posted by Pseudomizer
In the ACP the phrases in the usergroup manager do not work on a german board. They are just blank. Only the hardcoded text will be shown. I think some phrases are missing here. The good thing is that the variable names tell you what the option does.
|
Here is the code that fixes your problem with hardcoded menus before you ask what the expression hardcoded means.
PHP Code:
print_table_header($vbphrase['journal_permissions']);
print_yes_no_row("Can View Journal", 'usergroup[canviewjournal]', $ug_bitfield['canviewjournal']);
print_yes_no_row("Can have Journal", 'usergroup[canhavejournal]', $ug_bitfield['canhavejournal']);
print_yes_no_row("Can View Comments", 'usergroup[canviewcomments]', $ug_bitfield['canviewcomments']);
print_yes_no_row("Can comment journals", 'usergroup[cancommentjournals]', $ug_bitfield['cancommentjournals']);
print_yes_no_row("Can rate journals", 'usergroup[canratejournals]', $ug_bitfield['canratejournals']);
print_yes_no_row("Can report entries", 'usergroup[canreportentries]', $ug_bitfield['canreportentries']);
print_yes_no_row("Can edit own journal", 'usergroup[caneditownjournal]', $ug_bitfield['caneditownjournal']);
print_yes_no_row("Can Edit Own Journal Entries", 'usergroup[caneditownentries]', $ug_bitfield['caneditownentries']);
print_yes_no_row("Can delete own journal", 'usergroup[candeleteownjournal]', $ug_bitfield['candeleteownjournal']);
print_yes_no_row("Can Delete Own Journal Entries", 'usergroup[candeleteownentries]', $ug_bitfield['candeleteownentries']);
print_yes_no_row("Can search journal", 'usergroup[cansearchjournal]', $ug_bitfield['cansearchjournal']);
print_table_break();
Cheers,