From: Evan Prodromou Date: Tue, 26 May 2009 21:28:03 +0000 (-0400) Subject: move statsreport.php to reportsnapshot.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=40d4668c7c5cdd41d36b878ad87f7737117efc9c;p=quix0rs-gnu-social.git move statsreport.php to reportsnapshot.php --- diff --git a/scripts/reportsnapshot.php b/scripts/reportsnapshot.php index 7b7724b9bb..e332d856c0 100644 --- a/scripts/reportsnapshot.php +++ b/scripts/reportsnapshot.php @@ -34,6 +34,4 @@ define('LACONICA', true); require_once(INSTALLDIR . '/lib/common.php'); -// All that setup, just for this! - -Snapshot::check(); \ No newline at end of file +Snapshot::check(); diff --git a/scripts/statsreport.php b/scripts/statsreport.php deleted file mode 100644 index e332d856c0..0000000000 --- a/scripts/statsreport.php +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env php -. - */ - -# Abort if called from a web server -if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { - print "This script must be run from the command line\n"; - exit(1); -} - -ini_set("max_execution_time", "0"); -ini_set("max_input_time", "0"); -set_time_limit(0); -mb_internal_encoding('UTF-8'); - -define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); -define('LACONICA', true); - -require_once(INSTALLDIR . '/lib/common.php'); - -Snapshot::check();