selectable templates for user profile view and edit

This commit is contained in:
Colin Kuskie 2008-06-13 05:07:12 +00:00
parent 0b2283d198
commit c7083c8177
6 changed files with 228 additions and 3 deletions

View file

@ -29,6 +29,7 @@ my $quiet; # this line required
my $session = start(); # this line required
# upgrade functions go here
addSelectableProfileTemplates($session);
finish($session); # this line required
@ -42,6 +43,12 @@ finish($session); # this line required
# print "DONE!\n" unless $quiet;
#}
sub addSelectableProfileTemplates {
my $session = shift;
$session->setting->add('viewUserProfileTemplate', 'PBtmpl0000000000000052');
$session->setting->add('editUserProfileTemplate', 'PBtmpl0000000000000051');
}
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------