feedify.ini: remove utf-8 declaration
Screws up with the parser as it is read as unicode (and xml parser expects bytes)master
parent
ce30952fa2
commit
8a4f86210c
|
@ -23,10 +23,10 @@ timeformat =
|
|||
%Y-%m-%dT%H:%M:%SZ
|
||||
|
||||
base =
|
||||
<?xml version="1.0" encoding="utf-8"?><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/"></rdf:RDF>
|
||||
<?xml version="1.0" encoding="utf-8"?><rss version="2.0"></rss>
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"></feed>
|
||||
<?xml version="1.0" encoding="utf-8"?><feed version="0.3" xmlns="http://purl.org/atom/ns#"></feed>
|
||||
<?xml version="1.0"?><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/"></rdf:RDF>
|
||||
<?xml version="1.0"?><rss version="2.0"></rss>
|
||||
<?xml version="1.0"?><feed xmlns="http://www.w3.org/2005/Atom"></feed>
|
||||
<?xml version="1.0"?><feed version="0.3" xmlns="http://purl.org/atom/ns#"></feed>
|
||||
|
||||
title =
|
||||
/rdf:RDF/rssfake:channel/rssfake:title
|
||||
|
|
Loading…
Reference in New Issue