From: <var...@us...> - 2024-01-29 19:41:17
|
Revision: 11077 http://sourceforge.net/p/phpwiki/code/11077 Author: vargenau Date: 2024-01-29 19:41:16 +0000 (Mon, 29 Jan 2024) Log Message: ----------- lib/RssWriter.php: fix by Christof Meerwald Modified Paths: -------------- trunk/lib/RssWriter.php Modified: trunk/lib/RssWriter.php =================================================================== --- trunk/lib/RssWriter.php 2024-01-29 18:43:23 UTC (rev 11076) +++ trunk/lib/RssWriter.php 2024-01-29 19:41:16 UTC (rev 11077) @@ -266,7 +266,7 @@ $attr = array('xmlns' => 'http://www.w3.org/2005/Atom', 'version' => '0.3', // or 1.0 'lang' => $LANG); - $this->_channel = $this->__node('feed', $attr, $properties); + $this->_channel = $this->__atom_node('feed', $attr, $properties); } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |