diff options
| author | 2018-02-02 13:59:48 +0100 | |
|---|---|---|
| committer | 2018-02-02 13:59:48 +0100 | |
| commit | 5faa7aaf66aa2e762922b293cb9b7293a5003a7d (patch) | |
| tree | 7eeaf759dd95156d6332ac55f45bb768619a8fbc /app/Controllers/feedController.php | |
| parent | fb541b1bacb198be7ccac9341415facb91b7dc81 (diff) | |
Trim spaces from user given url
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 884172112..985b943d2 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -39,12 +39,14 @@ class FreshRSS_feed_Controller extends Minz_ActionController { * @throws FreshRSS_Feed_Exception * @throws Minz_FileNotExistException */ - public static function addFeed($url, $title = '', $cat_id = 0, $new_cat_name = '', $http_auth = '') { + public static function addFeed($param_url, $title = '', $cat_id = 0, $new_cat_name = '', $http_auth = '') { FreshRSS_UserDAO::touch(); @set_time_limit(300); $catDAO = new FreshRSS_CategoryDAO(); + $url = trim($param_url); + $cat = null; if ($new_cat_name != '') { $new_cat_id = $catDAO->addCategory(array('name' => $new_cat_name)); |
