diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-04-06 16:22:57 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-04-06 16:22:57 +0200 |
commit | 2dd5c1e4a30599a3478a055cb804d182e50d615e (patch) | |
tree | 7042b26889cfe3135f9511ab7f6f7e47ebab1d2d /inc/3rdparty | |
parent | d7ee9f986b7c297d7707a816d6c1c3f4503d721b (diff) | |
parent | 29d9c0ffe1819f0cdf8d8201727777cfd1b1d0f4 (diff) | |
download | wallabag-2dd5c1e4a30599a3478a055cb804d182e50d615e.tar.gz wallabag-2dd5c1e4a30599a3478a055cb804d182e50d615e.tar.zst wallabag-2dd5c1e4a30599a3478a055cb804d182e50d615e.zip |
Merge pull request #605 from wallabag/fix-604
[fix] Use of undefined constant ATOM #604
Diffstat (limited to 'inc/3rdparty')
-rwxr-xr-x | inc/3rdparty/libraries/feedwriter/FeedWriter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/3rdparty/libraries/feedwriter/FeedWriter.php b/inc/3rdparty/libraries/feedwriter/FeedWriter.php index 5d16e765..3f95372d 100755 --- a/inc/3rdparty/libraries/feedwriter/FeedWriter.php +++ b/inc/3rdparty/libraries/feedwriter/FeedWriter.php | |||
@@ -193,7 +193,7 @@ define('JSONP', 3, true); | |||
193 | */ | 193 | */ |
194 | public function setDescription($desciption) | 194 | public function setDescription($desciption) |
195 | { | 195 | { |
196 | $tag = ($this->version == ATOM)? 'subtitle' : 'description'; | 196 | $tag = 'description'; |
197 | $this->setChannelElement($tag, $desciption); | 197 | $this->setChannelElement($tag, $desciption); |
198 | } | 198 | } |
199 | 199 | ||