Quote:
Originally Posted by westpointer
I do have one small problem. When I edit the usergroup settings, the last two lines don't display any text. See attached:
|
Fixed this myself. In admincp/usergroup.php, around line 205, there was a mis-spelled phrase.
Change:
PHP Code:
print_yes_no_row($vbphrase['ecdownloads_can_eidt_all_files'], 'usergroup[caneditallfiles]', $ug_bitfield['caneditallfiles']);
To:
PHP Code:
print_yes_no_row($vbphrase['ecdownloads_can_edit_all_files'], 'usergroup[caneditallfiles]', $ug_bitfield['caneditallfiles']);
That will fix the text for "Can Edit All Files".
The last line is supposed to read "Can View Disabled Download Section." The vbphrase it is looking for is "ecdownloads_can_view_disabled". However, the vbphrase (under type Permissions) is actually "ecdownloads_view_disabled". You need to either modify the existing vbphrase or add a new phrase named "ecdownloads_can_view_disabled".