aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Django Janny <django.janny@gmail.com> 2018-02-05 20:48:16 +0100
committerGravatar Django Janny <django.janny@gmail.com> 2018-02-05 20:48:16 +0100
commit80168545eaa9e0183e72931ff7e50bfff36d7c33 (patch)
treeab0cce8e0beae913c814bad67b43f89b74410436 /app
parent5faa7aaf66aa2e762922b293cb9b7293a5003a7d (diff)
param name
Diffstat (limited to 'app')
-rwxr-xr-xapp/Controllers/feedController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php
index 985b943d2..7f66b10db 100755
--- a/app/Controllers/feedController.php
+++ b/app/Controllers/feedController.php
@@ -39,13 +39,13 @@ class FreshRSS_feed_Controller extends Minz_ActionController {
* @throws FreshRSS_Feed_Exception
* @throws Minz_FileNotExistException
*/
- public static function addFeed($param_url, $title = '', $cat_id = 0, $new_cat_name = '', $http_auth = '') {
+ public static function addFeed($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);
+ $url = trim($url);
$cat = null;
if ($new_cat_name != '') {