
08-20-2011, 03:55 AM
|
 |
|
|
Join Date: May 2006
Location: Kentucky
Posts: 792
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by xtremecoders
BTW the Difference is on cannedreplies.php file at edit & add Functions
My file has.....
Code:
$templater = vB_Template::create('USERCP_SHELL');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('onload', $onload);
$templater->register('template_hook', $template_hook);
$templater->register('cpnav', $cpnav);
$templater->register('headinclude', $headinclude);
$templater->register('pagetitle', $pagetitle);
$templater->register('HTML', $HTML);
$templater->register('header', $header);
$templater->register('footer', $footer);
print_output($templater->render());
Your file has.....
Code:
$templater = vB_Template::create('USERCP_SHELL');
$templater->register('navbar', $navbar);
$templater->register('headinclude', $headinclude);
$templater->register('pagetitle', $pagetitle);
$templater->register('cpnav', $cpnav);
$templater->register('HTML', $HTML);
$templater->register('header', $header);
$templater->register('footer', $footer);
print_output($templater->render());
and in my case this was the reason which my style was complete broken on ADD or Edit... (VB 4.1.5 PL1)
And see how affects on my site....
BEFORE the patch (your File)
AFTER the Patch (my File).....
Nice ehhhh ?????
|
Ah, I see. I do not mind, I was just curious what the changes were
|