1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 14:46:56 +02:00

Fixes #4194 - Use correct LAN for XUP login/register action

This commit is contained in:
Moc
2021-12-22 14:24:04 +01:00
parent 1621bfb249
commit f426ffc729

View File

@@ -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;
}