From c15cb78c7fcbfc79f190021128e9d2b3b8d05721 Mon Sep 17 00:00:00 2001 From: nbm Date: Fri, 25 Nov 2005 18:30:19 +0000 Subject: [PATCH] Authentication Providers are now dispatchers - they need to handle do_editSourceProvider and do_performEditSourceProvider. --- lib/authentication/authenticationprovider.inc.php | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/lib/authentication/authenticationprovider.inc.php b/lib/authentication/authenticationprovider.inc.php index 3f01517..e903246 100644 --- a/lib/authentication/authenticationprovider.inc.php +++ b/lib/authentication/authenticationprovider.inc.php @@ -1,11 +1,12 @@ sName; + } + function getNamespace() { + return $this->sNamespace; + } + + function do_editSourceProvider() { + return $this->errorRedirectTo('viewsource', "Provider does not support editing", 'source_id=' . $_REQUEST['source_id']); + } + + function do_performEditSourceProvider() { + return $this->errorRedirectTo('viewsource', "Provider does not support editing", 'source_id=' . $_REQUEST['source_id']); + } } -- libgit2 0.21.4