diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-09-02 13:33:55 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-09-02 13:33:55 +0400 |
| commit | 8add44ec95d4f6e230fd7c5fd1a8995b7e72dde6 (patch) | |
| tree | 83ce517fc89476273dcad49c3f35b7b49f8a7677 | |
| parent | 8b6e08a11a5f5c3b52b686e7bfc4b21993d94d2d (diff) | |
opml: fix category title in filter export
| -rw-r--r-- | include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php index 960cf996f..1ee334fa9 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2048,7 +2048,7 @@ function getFeedTitle($link, $id, $cat = false) { if ($cat) { - return getFeedCatTitle($link, $id); + return getCategoryTitle($link, $id); } else if ($id == -1) { return __("Starred articles"); } else if ($id == -2) { |