diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-22 15:29:43 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-22 15:29:43 -0700 |
commit | 00bf031f0ba3c603b2d99808340da97897548b28 (patch) | |
tree | c79c1abdf094f66de3f38a6ba061a777627b5bc0 | |
parent | 9171f16b730176717b0b9abf84ace10b7a6dddc7 (diff) |
change fixup_conversations to use commandline.inc
-rwxr-xr-x | scripts/fixup_conversations.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/scripts/fixup_conversations.php b/scripts/fixup_conversations.php index d4a47cfee..2cfa422e6 100755 --- a/scripts/fixup_conversations.php +++ b/scripts/fixup_conversations.php @@ -18,16 +18,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -# 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(); -} - define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); -define('LACONICA', true); -require_once(INSTALLDIR . '/lib/common.php'); +require_once INSTALLDIR.'/scripts/commandline.inc'; common_log(LOG_INFO, 'Fixing up conversations.'); @@ -72,8 +65,3 @@ while ($notice->fetch()) { print ".\n"; } - -ini_set("max_execution_time", "0"); -ini_set("max_input_time", "0"); -set_time_limit(0); -mb_internal_encoding('UTF-8'); |