aboutsummaryrefslogtreecommitdiff
path: root/app/models/Feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/Feed.php')
-rw-r--r--app/models/Feed.php11
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 ();