|
From: <var...@us...> - 2021-09-20 12:39:42
|
Revision: 10593
http://sourceforge.net/p/phpwiki/code/10593
Author: vargenau
Date: 2021-09-20 12:39:40 +0000 (Mon, 20 Sep 2021)
Log Message:
-----------
function __node has only 3 parameters
Modified Paths:
--------------
trunk/lib/RssWriter.php
Modified: trunk/lib/RssWriter.php
===================================================================
--- trunk/lib/RssWriter.php 2021-09-20 12:34:57 UTC (rev 10592)
+++ trunk/lib/RssWriter.php 2021-09-20 12:39:40 UTC (rev 10593)
@@ -255,7 +255,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, $uri);
+ $this->_channel = $this->__node('feed', $attr, $properties);
}
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|