From 07e9e2dc3241eef1b803e655a5273f79cb758806 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 8 Jan 2009 20:56:09 +0000 Subject: Remove _darcs from git repository Not sure how or why this got in there. --- _darcs/pristine/scripts/fixup_replies.php | 40 ------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 _darcs/pristine/scripts/fixup_replies.php (limited to '_darcs/pristine/scripts/fixup_replies.php') diff --git a/_darcs/pristine/scripts/fixup_replies.php b/_darcs/pristine/scripts/fixup_replies.php deleted file mode 100644 index 6010e21d1..000000000 --- a/_darcs/pristine/scripts/fixup_replies.php +++ /dev/null @@ -1,40 +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(); -} - -define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); -define('LACONICA', true); - -require_once(INSTALLDIR . '/lib/common.php'); - -common_log(LOG_INFO, 'Starting to do old notices.'); - -$notice = new Notice(); -$cnt = $notice->find(); - -while ($notice->fetch()) { - common_log(LOG_INFO, 'Getting replies for notice #' . $notice->id); - common_save_replies($notice); -} -- cgit v1.2.3-54-g00ecf