]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
change fixup_conversations to use commandline.inc
authorEvan Prodromou <evan@controlyourself.ca>
Mon, 22 Jun 2009 22:29:43 +0000 (15:29 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Mon, 22 Jun 2009 22:29:43 +0000 (15:29 -0700)
scripts/fixup_conversations.php

index d4a47cfeeff03b481ac36f1d6a732c14d4f08e60..2cfa422e659f859806c7cdea78fba016963062ad 100755 (executable)
  * 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');