aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-12-19 21:47:04 -0500
committercash <cash.costello@gmail.com>2011-12-19 21:47:04 -0500
commit4d7ddc5164046ccecd6a901e2e959d180669dd31 (patch)
tree8adc8f0d156d1120889ee370366f28d91a7dc26d
parent77b5489778ebe1c4abc4c78ef0ae326c180dfdf8 (diff)
downloadelgg-4d7ddc5164046ccecd6a901e2e959d180669dd31.tar.gz
elgg-4d7ddc5164046ccecd6a901e2e959d180669dd31.tar.bz2
needed to add actions as public pages also
-rw-r--r--start.php5
1 files changed, 4 insertions, 1 deletions
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;
}