summaryrefslogtreecommitdiff
path: root/modules/openid
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-24 00:14:23 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-24 00:14:23 +0000
commit2c552193154dd49a335b883019e216430a097790 (patch)
tree0105ac8012cddcf8f4f2b63a27f66d0457dfd5cd /modules/openid
parent00280ca9885a668dd28831cacd536d11f98df36f (diff)
downloadbrdo-2c552193154dd49a335b883019e216430a097790.tar.gz
brdo-2c552193154dd49a335b883019e216430a097790.tar.bz2
#497118 by chx, catch, pwolanin, JoshuaRogers, and Jacob Singh: Remove the function registry. While the hope was that this would result in improved performance for low-end hosts, it comes at the expense of critical development experience problems and less benefit than something like APC. Class registry remains intact to facilitate autoloading.
Diffstat (limited to 'modules/openid')
-rw-r--r--modules/openid/openid.module3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/openid/openid.module b/modules/openid/openid.module
index 842606d7d..c1a026672 100644
--- a/modules/openid/openid.module
+++ b/modules/openid/openid.module
@@ -15,6 +15,7 @@ function openid_menu() {
'page callback' => 'openid_authentication_page',
'access callback' => 'user_is_anonymous',
'type' => MENU_CALLBACK,
+ 'file' => 'openid.pages.inc',
);
$items['user/%user/openid'] = array(
'title' => 'OpenID identities',
@@ -23,6 +24,7 @@ function openid_menu() {
'access callback' => 'user_edit_access',
'access arguments' => array(1),
'type' => MENU_LOCAL_TASK,
+ 'file' => 'openid.pages.inc',
);
$items['user/%user/openid/delete'] = array(
'title' => 'Delete OpenID',
@@ -31,6 +33,7 @@ function openid_menu() {
'access callback' => 'user_edit_access',
'access arguments' => array(1),
'type' => MENU_CALLBACK,
+ 'file' => 'openid.pages.inc',
);
return $items;
}