]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Sitemap/sitemapindex.php
Make optional arguments for getNoticeIds explicit
[quix0rs-gnu-social.git] / plugins / Sitemap / sitemapindex.php
index 5150b1aeb8bd7aab7a487e10543fa123c5ae9974..ab89c2156c936afd18b52f6ea5b64502bd6b80e0 100644 (file)
@@ -40,7 +40,6 @@ if (!defined('STATUSNET')) {
  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  * @link     http://status.net/
  */
-
 class SitemapindexAction extends Action
 {
     /**
@@ -50,7 +49,6 @@ class SitemapindexAction extends Action
      *
      * @return void
      */
-
     function handle($args)
     {
         header('Content-Type: text/xml; charset=UTF-8');
@@ -91,8 +89,6 @@ class SitemapindexAction extends Action
     {
         $noticeCounts = Sitemap_notice_count::getAll();
 
-        common_debug(sprintf("Got %d notice counts", count($noticeCounts)));
-
         foreach ($noticeCounts as $dt => $cnt) {
             if ($cnt == 0) {
                 continue;