 |
 |
 |
 |
#153629 - 08/16/02 03:26 AM
Re: [6.3.x] [beta] MegaMod
|
Member
Registered: 03/11/01
Posts: 314
|
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#153630 - 08/17/02 06:29 AM
Re: [6.3.x] [beta] MegaMod
|
Junior Member
Registered: 07/06/02
Posts: 17
|
It also works in Ubb 6.3.0, but, a minor edit was neccesary: In Cp_user_titles.pl code:</font><hr /> ###FIND:
&RegField($vars_wordlets_cp{user_titles_mod_title}, "ModeratorTitle", "yes", "40", "1000", "", UBBCGI::escapeHTML($vars_misc{ModeratorTitle}), 3);
###ADD UNDER:
&AlternateColors;
&RegField($vars_wordlets_cp{user_titles_megamod_title}, "MegaModeratorTitle", "yes", "40", "1000", "", UBBCGI::escapeHTML($vars_misc{MegaModeratorTitle}), 3); <hr /></blockquote>HAS TO BE <blockquote><font class="small">code: [qb] ###FIND:
&RegField($vars_wordlets_cp{user_titles_mod_title}, "ModeratorTitle", "yes", "40", "1000", "", UBBCGI::escapeHTML($vars_misc{ModeratorTitle}), 3);
###ADD UNDER:
&RegField($vars_wordlets_cp{user_titles_megamod_title}, "MegaModeratorTitle", "yes", "40", "1000", "", UBBCGI::escapeHTML($vars_misc{MegaModeratorTitle}), 3); [/qb] but, thanks for this great hack! 
_________________________
i was X-tend, but i lost my mail and password
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#153643 - 09/16/02 03:28 AM
Re: [6.3.x] [beta] MegaMod
|
Spotlight Runner-Up
Registered: 03/27/02
Posts: 422
Loc: England, UK
|
Found a couple of bugs.. Fixing these also fixed the problem I had last night that we discussed on AIM In ubb_lib.cgiThis: code:</font><hr /> if (($profile[8] eq 'Administrator') || ($user_profile[8] eq 'MegaModerator')) {<hr /></blockquote>. Should be: <blockquote><font class="small">code: [qb] if (($profile[8] eq 'Administrator') || ($profile[8] eq 'MegaModerator')) {[/qb] . This: code:</font><hr /> unless (($profile[8] eq 'Administrator') || ($user_profile[8] eq 'MegaModerator')) {<hr /></blockquote>. Should be: <blockquote><font class="small">code: [qb] unless (($profile[8] eq 'Administrator') || ($profile[8] eq 'MegaModerator')) {[/qb] . In ubb_profile.cgiThis: code:</font><hr /> if(($viewer_profile[8] eq 'Administrator') || ($user_profile[8] eq 'MegaModerator') || ($user_profile[8] eq 'Moderator')) {<hr /></blockquote>. Should be: <blockquote><font class="small">code: [qb] if (($viewer_profile[8] eq 'Administrator') || ($viewer_profile[8] eq 'MegaModerator') || ($viewer_profile[8] eq 'Moderator')) {[/qb] . You're welcome.. 
_________________________
- OBK  - Gaming Update - <img src="http://www.ubbdev.com/ud/?s=2&u=Oblivion Knight" alt=" - " /> Results Returned, <img src="http://www.ubbdev.com/ud/?u=Oblivion Knight&s=1" alt=" - " /> Points Collected & Counting!
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|