Fixed False event listener documentation

  • Thread starter Thread starter ragtek
  • Start date Start date
R

ragtek

Guest
Listener template_create have this as callbacksignature in the documentation:

Callback signature:
$templateName, array &$params, XenForo_Template_Abstract $template

the first parameter is also a reference,
it should be
Callback signature:
&$templateName, array &$params, XenForo_Template_Abstract $template


XenForo_Template_Abstract line83:
PHP:
XenForo_CodeEvent::fire('template_create', array(&$templateName, &$params, $this));
 
Top Bottom