*********************************************************************************
* MOD NAME: MyStyle™ *
*********************************************************************************
* DESCRIPTION: Lets the user choose his/her own template (color scheme). *
* DEMO: http://lkubb.dns2go.com *
* *
*********************************************************************************
* CREATED BY: LK *
* DATE: 04/13/02 *
* VERSION: version 1.0 *
* CREDITS: Jamin (Skorpion) + Tech-Ni-Kal *
* *
*********************************************************************************
*********************************************************************************
* REQUIREMENTS: Full License, Mod Wordlets *
* COMPATABILITY: works with v6.3.0 *
*********************************************************************************
* FILES MODIFIED: ubb_profile.cgi, public_display_profile.pl, ubb_lib.cgi, *
* ubb_lib_files.cgi, ubb_registration.cgi, ultimatebb.cgi, *
* public_edit_profile.pl, public_register_page.pl, *
* public_register_page_kid.pl, public_reg_confirm.pl, *
* public_reg_confirm_kid.pl, vars_wordlets_mods.cgi *
*********************************************************************************
* DISCLAIMER: By using this modification, the user implicitly agrees *
* that they are willingly modifying any and all files at *
* their own risk. Should any errors occur either as a *
* direct or indirect result of said modifications the user *
* agrees not to hold Infopop Corporation or any of the *
individuals listed accountable. *
* *
* *
* IN OTHER WORDS: PLEASE MAKE BACKUP COPIES OF EVERY FILE YOU PLAN TO *
* MODIFY PRIOR TO MODIFICATION!! *
* *
* *
* FOR MORE TIPS AND TRICKS FOR USE WITH THE ULTIMATE BULLETIN BOARD *
* PLEASE US AT VISIT: *
* *
* http://www.ubbdev.com/ *
* *
*********************************************************************************
*********************************************************************************
************************
* Open ubb_profile.cgi *
************************
Find:
=====
# calibrate mass mail
if ($user_profile[14] eq 'yes') { $mm_yes = 'checked="checked"'; $mm_no = ''; }
else { $mm_no = 'checked="checked"'; $mm_yes = ''; }
Add below:
==========
# style template
my @templates = &OpenFileAsArray("$vars_config{VariablesPath}/vars_style_sets.cgi");
if (!$user_profile[55]) { $selected = q^ selected="selected"^; }
$TempDropDown = qq!!;
Find:
=====
else { $homepage = $in{homepage}; }
Add below:
==========
my $template = $in{template};
unless ((-e "$vars_config{NonCGIPath}/styles/vars_style_$template.cgi") || ($template eq '0')) {
&StandardHTML("$vars_wordlets_mods{template_illegal}");
}
Find:
=====
$user_profile[38] = join("|", $avlock, $avban, $avhide);
Add below:
==========
$user_profile[55] = $template;
*******************************
* Open public_edit_profile.pl *
*******************************
Find:
=====