
08-19-2011, 05:43 PM
|
|
|
Join Date: May 2010
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Eric
I do not see any difference in this zip and the changes I posted? Unless you were just zipping up the mod with my changes :/
As far as the <br> issue, I will try to work it out.
|
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 ?????
|