DrupalBin
Submit Code
About
Recent Posts
css path
1 hour 2 min
ago
Fix for Code
5 hours 2 min
ago
Fix for Code
5 hours 8 min
ago
Fix for Code
5 hours 16 min
ago
more
Tags
CCK
drupal
fapi
jquery
menu
module
Panels
php
simpletest
test
theme
views
more tags
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Create new account
Request new password
Log in using OpenID
Cancel OpenID login
Home
Fix for user/%uuers/persona not created
View
Download
Fix
This fix will not be saved to the database until you submit.
Summary:
Tags:
Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Source code:
*
<?php // $Id$ /** * @file Openid Attribute Exchange implementation for drupal */ /** * Implementation ofhook_menu() */ function openid_ax_menu() { $items['openid/ax'] = array( 'title' => 'Openid Attribute Exchange', 'page callback' => 'openid_ax_endpoint', 'type' => MENU_CALLBACK, 'file' => 'openid_ax.pages.inc', 'access callback' => TRUE ); $items['openid/ax/continue'] = array( 'title' => 'OpenID Attribute Exchange', 'page callback' => 'openid_ax_continue', 'access callback' => TRUE, 'type' => MENU_CALLBACK, 'file' => 'openid_ax.pages.inc' ); $items['openid/ax/send'] = array( 'title' => 'OpenID Attribute Exchange', 'page callback' => 'openid_ax_send', 'access callback' => TRUE, 'type' => MENU_CALLBACK, 'file' => 'openid_ax.pages.inc' ); $items['user/%user/persona'] = array( 'title' => 'OpenID Attribute Exchange Personas', 'page callback' => 'openid_ax_persona', 'access callback' => TRUE, 'type' => MENU_LOCAT_TASK, 'file' => 'openid_ax.pages.inc' ); $items['openid/ax/openid_sites'] = array( 'title' => 'anshu prateek', 'page callback' => 'openid_provider_sites', 'page arguments' => array(1), 'access callback' => TRUE, 'type' => MENU_LOCAL_TASK, 'file' => 'openid_provider.pages.inc' ); return $items; } ?>
Syntax highlighting mode:
ActionScript
ColdFusion
Diff
Drupal
Drupal 5
Drupal 6
HTML
Javascript
MySQL
PHP
Python
robots.txt
SQL
Text
Select the syntax highlighting mode to use.