]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
define LACONICA for compatibility on scripts
authorEric Helgeson <erichelgeson@gmail.com>
Tue, 13 Oct 2009 17:34:28 +0000 (13:34 -0400)
committerEric Helgeson <erichelgeson@gmail.com>
Tue, 13 Oct 2009 17:34:28 +0000 (13:34 -0400)
fixup_conversations.php fixes

scripts/commandline.inc
scripts/fixup_conversations.php

index 1573b569db604cc0ad491ee4089bad43f07fbdbd..9029bb19db4e7df9879d73fccbb4b792124c8599 100644 (file)
@@ -27,6 +27,7 @@ if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
 }
 
 define('STATUSNET', true);
+define('LACONICA', true); // compatibility
 
 // Set various flags so we don't time out on long-running processes
 
index 8a9f7bb577d5271fe3e53d3702de9ef2c0e9c278..80890fe98d8ec82fc07b95aa945dc18636b6d0db 100755 (executable)
@@ -24,17 +24,17 @@ require_once INSTALLDIR.'/scripts/commandline.inc';
 
 common_log(LOG_INFO, 'Fixing up conversations.');
 
-$nid = new Notice();
-$nid->query('select id, reply_to from notice where conversation is null');
+$notice = new Notice();
+$notice->query('select id, reply_to from notice where conversation is null');
 
-while ($nid->fetch()) {
+while ($notice->fetch()) {
 
     $cid = null;
     
-    $notice = new Notice();
+    $orig = clone($notice);
     
-    if (empty($nid->reply_to)) {
-        $cid = $nid->id;
+    if (empty($notice->reply_to)) {
+        $notice->conversation = $notice->id;
     } else {
         $reply = Notice::staticGet('id', $notice->reply_to);
 
@@ -61,9 +61,7 @@ while ($nid->fetch()) {
         continue;
     }
 
-    $notice = null;
     $orig = null;
-    unset($notice);
     unset($orig);
     
     print ".\n";