From e38e82687bdb67eccadd46b2615df2baa4e0b7ce Mon Sep 17 00:00:00 2001 From: cash Date: Fri, 6 Nov 2009 12:34:00 +0000 Subject: removing username/password authorization for REST by default - developers can add their own custom PAM using the plugin hook if they require this git-svn-id: http://code.elgg.org/elgg/trunk@3627 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/pam.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'engine/lib/pam.php') diff --git a/engine/lib/pam.php b/engine/lib/pam.php index 04f29f412..17b10b5cc 100644 --- a/engine/lib/pam.php +++ b/engine/lib/pam.php @@ -44,6 +44,17 @@ function register_pam_handler($handler, $importance = "sufficient") { return false; } +/** + * Unregisters a PAM handler. + * + * @param string $handler The PAM handler function name + */ +function unregister_pam_handler($handler) { + global $_PAM_HANDLERS; + + unset($_PAM_HANDLERS[$handler]); +} + /** * Attempt to authenticate. * This function will process all registered PAM handlers or stop when the first -- cgit v1.2.3