Skip to content
This repository has been archived by the owner on Nov 26, 2017. It is now read-only.

Commit

Permalink
# refactored TinyMCE - thanks Jean-Marie
Browse files Browse the repository at this point in the history
 # fixed SimplePie library - thanks Jean-Marie
 # improved frontend article editing - thanks Jean-Marie
 # fixed reference bug and spelling mistake in com_plugins

--HG--
extra : convert_revision : svn%3A6f6e1ebd-4c2b-0410-823f-f34bde69bce9/development/trunk/libraries%4013892
  • Loading branch information
Hackwar committed Dec 29, 2009
1 parent bfdd997 commit bb42c43
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 117 deletions.
3 changes: 2 additions & 1 deletion joomla/factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,8 @@ public static function getFeedParser($url, $cache_time = 0)
$cache_time = 0;
}
$simplepie = new SimplePie($url, JPATH_CACHE, $cache_time);
if ($simplepie->data) {
$simplepie->force_feed(true);
if ($simplepie->init()) {
return $simplepie;
} else {
JError::raiseWarning('SOME_ERROR_CODE', JText::_('ERROR LOADING FEED DATA'));
Expand Down
Loading

0 comments on commit bb42c43

Please sign in to comment.