diff options
Diffstat (limited to 'app/models')
| -rw-r--r-- | app/models/Feed.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/app/models/Feed.php b/app/models/Feed.php index 159b6e767..91c8d8022 100644 --- a/app/models/Feed.php +++ b/app/models/Feed.php @@ -51,8 +51,15 @@ class Feed extends Model { public function pathEntries () { return $this->pathEntries; } - public function httpAuth () { - return $this->httpAuth; + public function httpAuth ($raw = true) { + if ($raw) { + return $this->httpAuth; + } else { + return array ( + 'username' => '', + 'password' => '' + ); + } } public function nbEntries () { $feedDAO = new FeedDAO (); |
