Missing Call in the GuMaxV.php file

Please use this forum to post feedback and suggestions related to GuMax.
Post Reply
User avatar
vwdiesel
Rank 0
Rank 0
Posts: 2
Joined: October 21st, 2008, 9:33 am

Missing Call in the GuMaxV.php file

Post by vwdiesel »

Not sure if this was intentionally left out, but the following line was not in the GuMaxV.php file:

wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this) );

This was located in the monobook skin file right after the templates toolbox end but not in GuMax - so a plugin I added to print a page to PDF was not showing at the bottom of the page. The file now looks like this:

//} // if loggedin
wfRunHooks( 'GuMaxVTemplateToolboxEnd', array( &$this ) );
wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this) );
?>

An my new toolbox link now shows as it should at the bottom of the page in the 'footer' links.

Thanks,
Joe
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Missing Call in the GuMaxV.php file

Post by Paul »

The 'wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this) );' came after GuMaxV released...
Post Reply