]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/fixup_conversations.php
Added wait on signon failure due to update contacts failing
[quix0rs-gnu-social.git] / scripts / fixup_conversations.php
index 0be0b4bac583df8f06d2ceadd0a6f2f947316fc6..80890fe98d8ec82fc07b95aa945dc18636b6d0db 100755 (executable)
@@ -1,8 +1,8 @@
 #!/usr/bin/env php
 <?php
 /*
- * Laconica - a distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, Control Yourself, Inc.
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
@@ -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";