From 65ad6bf0637e091e4899f024e344b4997453b94e Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sat, 30 Jul 2011 21:02:26 +1000 Subject: [PATCH] better error message for "unknown auth method" --- inc/remote.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/remote.php b/inc/remote.php index a69d3160..bf170486 100644 --- a/inc/remote.php +++ b/inc/remote.php @@ -29,7 +29,7 @@ error('Plain-text authentication failed.'); break; default: - error('Unknown authentication method.'); + error('Unknown authentication method: "' . $this->auth['method'] . '".'); } }