Commit 1a6bd589 by Simon Champion

Use correct Joomla routing for default URLs

parent 084d3c1d
...@@ -125,9 +125,9 @@ class qa_joomla_default_integration ...@@ -125,9 +125,9 @@ class qa_joomla_default_integration
public static function onGetURLs() public static function onGetURLs()
{ {
return array( return array(
'login' => '/login.html', 'login' => JRoute::_('index.php?option=com_users&view=login'),
'logout' => '/logout.html', 'logout' => JRoute::_('index.php?option=com_users&view=login&layout=logout'),
'reg' => '/register.html', 'reg' => JRoute::_('index.php?option=com_users&view=registration'),
'denied' => '/', '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