diff options
| author | 2014-02-04 22:56:46 -0500 | |
|---|---|---|
| committer | 2014-02-04 22:56:46 -0500 | |
| commit | aa63f9f64fbf01039bf5b766263dbc18a1ebbd4c (patch) | |
| tree | c31e1cf633dfeb0a67f5a51427ae567c7550b955 /app/Controllers/feedController.php | |
| parent | a201450b5817af23a57e8c68569c24ed5451b7ef (diff) | |
| parent | 575d0002cc3839760f0a389eb4af8cd7d23b74c6 (diff) | |
Merge branch 'dev' into shortcuts
Ajoute le défilement automatique de l'article quand le partage est sélectionné.
Conflicts:
p/scripts/main.js
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index cf9c993d5..918f007fd 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -14,15 +14,15 @@ class FreshRSS_feed_Controller extends Minz_ActionController { ); } } - - $this->catDAO = new FreshRSS_CategoryDAO (); - $this->catDAO->checkDefault (); } public function addAction () { @set_time_limit(300); if (Minz_Request::isPost ()) { + $this->catDAO = new FreshRSS_CategoryDAO (); + $this->catDAO->checkDefault (); + $url = Minz_Request::param ('url_rss'); $cat = Minz_Request::param ('category', false); if ($cat === false) { @@ -309,6 +309,9 @@ class FreshRSS_feed_Controller extends Minz_ActionController { public function massiveImportAction () { @set_time_limit(300); + $this->catDAO = new FreshRSS_CategoryDAO (); + $this->catDAO->checkDefault (); + $entryDAO = new FreshRSS_EntryDAO (); $feedDAO = new FreshRSS_FeedDAO (); |
