Passed
Push — development ( 5c6121...81d1fa )
by Thomas
02:06
created
htdocs/util2/cron/modules/sitemaps.class.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $page = $opt['page'];
54 54
         $url = ($page['https']['mode'] == HTTPS_ENFORCED ? $page['absolute_https_url'] : $page['absolute_http_url']);
55 55
 
56
-        $url = urlencode($url. 'sitemap.xml');
56
+        $url = urlencode($url . 'sitemap.xml');
57 57
 
58 58
         $this->pingSearchEngine('http://www.google.com/webmasters/ping?sitemap=' . $url);
59 59
         $this->pingSearchEngine(
Please login to merge, or discard this patch.
htdocs/lib2/logic/SiteMapXml.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $sXML .= '<lastmod>' . xmlentities(date('c', $dLastMod)) . '</lastmod>';
63 63
         $sXML .= '<changefreq>' . xmlentities($sChangeFreq) . '</changefreq>';
64 64
         $sXML .= '<priority>' . xmlentities($nPriority) . '</priority>';
65
-        $sXML .= '</url>'."\n";
65
+        $sXML .= '</url>' . "\n";
66 66
 
67 67
         $this->writeInternal($sXML);
68 68
     }
Please login to merge, or discard this patch.