diff options
| author | 2015-01-21 10:50:53 +0100 | |
|---|---|---|
| committer | 2015-01-21 10:50:53 +0100 | |
| commit | c741fba06c6d866c86306445d625a791249ad3fc (patch) | |
| tree | 2b104f6abf7a1b099017122e411884423685d611 /app/Controllers/importExportController.php | |
| parent | 211569ef85f50891035e3e2645ec0c87badec1e1 (diff) | |
Update lib_opml.php
- lib_opml was not in its newest version
- FRSS supports OPML file without text attributes
Fix https://github.com/FreshRSS/FreshRSS/issues/758
Diffstat (limited to 'app/Controllers/importExportController.php')
| -rw-r--r-- | app/Controllers/importExportController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/importExportController.php b/app/Controllers/importExportController.php index db9db66a7..589777b2a 100644 --- a/app/Controllers/importExportController.php +++ b/app/Controllers/importExportController.php @@ -151,7 +151,7 @@ class FreshRSS_importExport_Controller extends Minz_ActionController { private function importOpml($opml_file) { $opml_array = array(); try { - $opml_array = libopml_parse_string($opml_file); + $opml_array = libopml_parse_string($opml_file, false); } catch (LibOPML_Exception $e) { Minz_Log::warning($e->getMessage()); return true; |
