getgrav / grav-plugin-sitemap

Grav Sitemap Plugin
https://getgrav.org
MIT License
42 stars 42 forks source link

Extra spaces #27

Closed mafisz closed 7 years ago

mafisz commented 7 years ago

I've got error:

>   <?xml version="1.0" encoding="UTF-8"?>
> --^

Someone have idea from where this two spaces may come?

flaviocopes commented 7 years ago

I saw the same issue yesterday with the theme main PHP file (user/themes/mytheme/mytheme.php) having trailing spaces after the closing PHP tag. Could it be the same issue?

mafisz commented 7 years ago

Thanks :) I copy code from grav documentation and there was two extra spaces after closing tag

<?php
 namespace Grav\Theme;

 class Mytheme extends Antimatter
 {
     // Some new methods, properties etc.
 }
?>  
flaviocopes commented 7 years ago

Ah thanks for mentioning, I fixed the example