From 7627970862e03a9061ddced3423689e9dccd6f45 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 12 Sep 2013 22:41:09 +0200 Subject: Corrected bug with the default "No Category" The SQL optimisation patch had introduced a bug with "No Category", now solved --- app/controllers/feedController.php | 1 + 1 file changed, 1 insertion(+) (limited to 'app/controllers/feedController.php') diff --git a/app/controllers/feedController.php b/app/controllers/feedController.php index 18a46f322..d685857bd 100755 --- a/app/controllers/feedController.php +++ b/app/controllers/feedController.php @@ -17,6 +17,7 @@ class feedController extends ActionController { if (Request::isPost ()) { $url = Request::param ('url_rss'); $cat = Request::param ('category'); + if (empty($cat)) $cat = '000000'; $user = Request::param ('username'); $pass = Request::param ('password'); $params = array (); -- cgit v1.2.3