diff options
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index c0843ffba..2fc0734db 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -160,7 +160,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController { // HTTP information are useful if feed is protected behind a // HTTP authentication $user = trim(Minz_Request::param('http_user', '')); - $pass = Minz_Request::param('http_pass', ''); + $pass = trim(Minz_Request::param('http_pass', '')); $http_auth = ''; if ($user != '' && $pass != '') { //TODO: Sanitize $http_auth = $user . ':' . $pass; |
