Fix most links pointing to default domain even when unregistered domain action is set to "display"

This commit is contained in:
Kijin Sung 2025-09-05 18:03:54 +09:00
parent cafddbfc67
commit 4e6591af13
2 changed files with 6 additions and 2 deletions

View file

@ -147,7 +147,11 @@ class ModuleHandler extends Handler
return true;
case 'display':
// pass
$site_module_info->domain_srl = -1;
$site_module_info->domain = Rhymix\Framework\URL::getCurrentDomain();
$site_module_info->is_default_domain = 'N';
$site_module_info->is_default_replaced = true;
Context::set('site_module_info', $site_module_info);
}
}
}