From: cash Date: Tue, 20 Dec 2011 02:47:04 +0000 (-0500) Subject: needed to add actions as public pages also X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=4d7ddc5164046ccecd6a901e2e959d180669dd31;p=lorea%2Felgg.git needed to add actions as public pages also --- diff --git a/start.php b/start.php index dbbb41785..a8e6fd94e 100644 --- a/start.php +++ b/start.php @@ -113,7 +113,8 @@ function openid_client_remove_email() { } /** - * Add the return_to page to the list of public pages for walled garden + * Add pages to the list of public pages for walled garden needed for OpenID + * transaction * * @param string $hook Hook name * @param string $type Hook type @@ -121,6 +122,8 @@ function openid_client_remove_email() { * @return array */ function openid_client_public($hook, $type, $pages) { + $pages[] = 'action/openid_client/login'; $pages[] = 'mod/openid_client/return.php'; + $pages[] = 'action/openid_client/register'; return $pages; }