mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 11:11:39 +09:00
fix #480 class_exists()의 autoload 비활성
This commit is contained in:
parent
2124ba6fa9
commit
062457415c
5 changed files with 7 additions and 7 deletions
|
|
@ -9,7 +9,7 @@ if(!defined("__XE__")) exit();
|
|||
* @brief Captcha for a particular action
|
||||
* English alphabets and voice verification added
|
||||
* */
|
||||
if(!class_exists('AddonCaptcha'))
|
||||
if(!class_exists('AddonCaptcha', false))
|
||||
{
|
||||
// On the mobile mode, XE Core does not load jquery and xe.js as normal.
|
||||
Context::loadFile(array('./common/js/jquery.min.js', 'head', NULL, -100000), true);
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ if(!defined("__XE__")) exit();
|
|||
* @brief Captcha for a particular action
|
||||
* English alphabets and voice verification added
|
||||
* */
|
||||
if(!class_exists('AddonMemberCaptcha'))
|
||||
if(!class_exists('AddonMemberCaptcha', false))
|
||||
{
|
||||
// On the mobile mode, XE Core does not load jquery and xe.js as normal.
|
||||
Context::loadFile(array('./common/js/jquery.min.js', 'head', NULL, -100000), true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue