1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 22:57:14 +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) switch ($type)
{ {
case "login": case "login":
$lan_plugin_social_xup = LAN_PLUGIN_SOCIAL_XUP_REG; $lan_plugin_social_xup = LAN_PLUGIN_SOCIAL_XUP_SIGNUP;
break; break;
case "signup": case "signup":
$lan_plugin_social_xup = LAN_PLUGIN_SOCIAL_XUP_SIGNUP; $lan_plugin_social_xup = LAN_PLUGIN_SOCIAL_XUP_REG;
break; break;
} }