summaryrefslogtreecommitdiff
path: root/app/controllers/feedController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/feedController.php')
-rwxr-xr-xapp/controllers/feedController.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/feedController.php b/app/controllers/feedController.php
index fa3f0712f..d810296b0 100755
--- a/app/controllers/feedController.php
+++ b/app/controllers/feedController.php
@@ -30,6 +30,8 @@ class feedController extends ActionController {
}
public function addAction () {
+ @set_time_limit(300);
+
if (Request::isPost ()) {
$url = Request::param ('url_rss');
$cat = Request::param ('category', false);
@@ -152,6 +154,8 @@ class feedController extends ActionController {
}
public function actualizeAction () {
+ @set_time_limit(300);
+
$feedDAO = new FeedDAO ();
$entryDAO = new EntryDAO ();
@@ -273,6 +277,8 @@ class feedController extends ActionController {
}
public function massiveImportAction () {
+ @set_time_limit(300);
+
$entryDAO = new EntryDAO ();
$feedDAO = new FeedDAO ();