From: Sébastien SAUVAGE Date: Fri, 29 Nov 2013 21:01:08 +0000 (-0800) Subject: Merge pull request #145 from Alkarex/patch-1 X-Git-Tag: v0.0.42beta~4 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=ab0638edb0b23e404e05c88c1029b98ad4dd9613;hp=c002ca9c6ba1d40cda342ca85fb48acda39d7e52;p=github%2Fshaarli%2FShaarli.git Merge pull request #145 from Alkarex/patch-1 smallHash: simplified and improved performance --- diff --git a/index.php b/index.php index 24fbe436..acc3fe49 100644 --- a/index.php +++ b/index.php @@ -939,7 +939,7 @@ function showRSS() echo ''."\n\n"; $i++; } - echo ''; + echo ''; $cache->cache(ob_get_contents()); ob_end_flush(); @@ -1024,7 +1024,7 @@ function showATOM() $feed.=''.htmlspecialchars($pageaddr).''.htmlspecialchars($pageaddr).''; $feed.=''.htmlspecialchars($pageaddr).''."\n\n"; // Yes, I know I should use a real IRI (RFC3987), but the site URL will do. $feed.=$entries; - $feed.=''; + $feed.=''; echo $feed; $cache->cache(ob_get_contents()); @@ -1101,7 +1101,7 @@ function showDailyRSS() echo ''."\n\n\n"; } - echo ''; + echo ''; $cache->cache(ob_get_contents()); ob_end_flush(); @@ -1744,11 +1744,11 @@ function importFile() } $LINKSDB->savedb(); - echo ''; + echo ''; } else { - echo ''; + echo ''; } }