diff options
| author | 2013-12-19 23:32:24 +0100 | |
|---|---|---|
| committer | 2013-12-19 23:32:24 +0100 | |
| commit | 3dc50cbd6627f9dfeb35c8e656eaf35f1f77495a (patch) | |
| tree | 127baa0cdb57b32571f0e8b60bf018303ff21ff8 /app | |
| parent | f3a50c3ce81e547e1e2c723db30c57ec160730ae (diff) | |
Compatibilité contenu HTML pour Feed->description
Implémente https://github.com/marienfressinaud/FreshRSS/issues/325
Diffstat (limited to 'app')
| -rwxr-xr-x | app/Controllers/configureController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index ef03d9e1d..8d3e02d3e 100755 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -94,7 +94,7 @@ class FreshRSS_configure_Controller extends Minz_ActionController { } else { if (Minz_Request::isPost () && $this->view->flux) { $name = Minz_Request::param ('name', ''); - $description = Minz_Request::param('description', ''); + $description = sanitizeHTML(Minz_Request::param('description', '', true)); $website = Minz_Request::param('website', ''); $url = Minz_Request::param('url', ''); $hist = Minz_Request::param ('keep_history', 'no'); |
