
08-15-2005, 09:59 AM
|
 |
|
|
Join Date: Mar 2004
Posts: 1,319
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by YodaTheCoda
ok last question, how and where do i replace the 2 missing phrases so that the last 2 options appear in the user manager
|
From my earlier post:
Quote:
Originally Posted by WestPointer
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".
|
|