aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty/libraries
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-04-06 16:21:48 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-04-06 16:21:48 +0200
commit29d9c0ffe1819f0cdf8d8201727777cfd1b1d0f4 (patch)
tree7042b26889cfe3135f9511ab7f6f7e47ebab1d2d /inc/3rdparty/libraries
parentd7ee9f986b7c297d7707a816d6c1c3f4503d721b (diff)
downloadwallabag-29d9c0ffe1819f0cdf8d8201727777cfd1b1d0f4.tar.gz
wallabag-29d9c0ffe1819f0cdf8d8201727777cfd1b1d0f4.tar.zst
wallabag-29d9c0ffe1819f0cdf8d8201727777cfd1b1d0f4.zip
[fix] Use of undefined constant ATOM #604
Diffstat (limited to 'inc/3rdparty/libraries')
-rwxr-xr-xinc/3rdparty/libraries/feedwriter/FeedWriter.php2
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