Archived
1
0

* Fix Generic RSS import to not always assume WPXRSS feed.

(garvinhicking)
This commit is contained in:
Garvin Hicking
2008-06-30 09:41:07 +00:00
parent e0ee69db0a
commit 175ddcaccd
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -3,6 +3,9 @@
Version 1.4 () Version 1.4 ()
------------------------------------------------------------------------ ------------------------------------------------------------------------
* Fix Generic RSS import to not always assume WPXRSS feed.
(garvinhicking)
* Fix bug in category sidebar plugin, which showed categories that * Fix bug in category sidebar plugin, which showed categories that
should have been hidden when the option "Hide parents of should have been hidden when the option "Hide parents of
selected sub-tree" was selected and Smarty templating was enabled. selected sub-tree" was selected and Smarty templating was enabled.
+1 -1
View File
@@ -316,7 +316,7 @@ class Serendipity_Import_Generic extends Serendipity_Import {
function import() { function import() {
global $serendipity; global $serendipity;
if ($this->data['wpxrss']) { if (serendipity_db_bool($this->data['wpxrss'])) {
return $this->import_wpxrss(); return $this->import_wpxrss();
} }