From f426ffc729f29d025d8158b838ddd9258c51fcc9 Mon Sep 17 00:00:00 2001 From: Moc Date: Wed, 22 Dec 2021 14:24:04 +0100 Subject: [PATCH] Fixes #4194 - Use correct LAN for XUP login/register action --- e107_core/shortcodes/batch/signup_shortcodes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_core/shortcodes/batch/signup_shortcodes.php b/e107_core/shortcodes/batch/signup_shortcodes.php index 5f7d5ae96..20e05a01f 100755 --- a/e107_core/shortcodes/batch/signup_shortcodes.php +++ b/e107_core/shortcodes/batch/signup_shortcodes.php @@ -116,10 +116,10 @@ class signup_shortcodes extends e_shortcode switch ($type) { case "login": - $lan_plugin_social_xup = LAN_PLUGIN_SOCIAL_XUP_REG; + $lan_plugin_social_xup = LAN_PLUGIN_SOCIAL_XUP_SIGNUP; break; case "signup": - $lan_plugin_social_xup = LAN_PLUGIN_SOCIAL_XUP_SIGNUP; + $lan_plugin_social_xup = LAN_PLUGIN_SOCIAL_XUP_REG; break; }