diff options
author | Evan Prodromou <evan@status.net> | 2010-07-10 09:58:27 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-07-10 09:58:27 -0400 |
commit | bb2f5defd5bb32820bc82a3c2087f926cd0e07ad (patch) | |
tree | a23bae394fb616ccfffba4e2b23a3a3dd846c920 | |
parent | d53d0f7908f0a8338d9f08401ed917ee98e25ce4 (diff) |
remove debugging statement and add a bit of output to updatecounts
-rw-r--r-- | plugins/Sitemap/scripts/updatecounts.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Sitemap/scripts/updatecounts.php b/plugins/Sitemap/scripts/updatecounts.php index 15c986418..91bc0ac4e 100644 --- a/plugins/Sitemap/scripts/updatecounts.php +++ b/plugins/Sitemap/scripts/updatecounts.php @@ -26,11 +26,11 @@ Update the notice and user counts cached in the database. END_OF_UPDATECOUNTS_HELP; -echo "INSTALLDIR=".INSTALLDIR."\n"; - require_once INSTALLDIR.'/scripts/commandline.inc'; // Will fill the cache $userCounts = Sitemap_user_count::getAll(); $noticeCounts = Sitemap_notice_count::getAll(); + +echo "Done.\n"; |