Commit 1a6bd589 by Simon Champion

Use correct Joomla routing for default URLs

parent 084d3c1d
......@@ -125,9 +125,9 @@ class qa_joomla_default_integration
public static function onGetURLs()
{
return array(
'login' => '/login.html',
'logout' => '/logout.html',
'reg' => '/register.html',
'login' => JRoute::_('index.php?option=com_users&view=login'),
'logout' => JRoute::_('index.php?option=com_users&view=login&layout=logout'),
'reg' => JRoute::_('index.php?option=com_users&view=registration'),
'denied' => '/',
);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment