MyBB Community Forums

Full Version: $mybb doesn't exist in build_captcha in class_captcha.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

in "member_register_regimage" template use
{$mybb->asset_url}
(this template use in build_captcha in class_captcha.php) but There isn't $mybb in global of this function.


For fix
line 168 of inc/class_captcha.php
		global $db, $lang, $templates, $theme;
should be:
		global $mybb, $db, $lang, $templates, $theme;
Anybody from mybb team to confirm this? PR is not a problem...
I've just read this now, I've fixed it earlier this week while fixing CAPTCHA bugs. I'm rejecting this (even though it was a valid at that time).

Thanks though Smile