]> git.mxchange.org Git - friendica.git/commitdiff
Update the `thr-parent` field in the `item` table
authorDomovoy <domovoy@errlock.org>
Sun, 29 Jul 2012 19:01:04 +0000 (21:01 +0200)
committerDomovoy <domovoy@errlock.org>
Sun, 29 Jul 2012 19:01:04 +0000 (21:01 +0200)
boot.php
update.php

index da72b16ef2841ceb85d53b4d5cbbf1daab30247a..90d5c856e0a369a6062d11c7f6625a258fab6649 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -13,7 +13,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_VERSION',      '3.0.1418' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1154      );
+define ( 'DB_UPDATE_VERSION',      1155      );
 
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
index 9442f825bb34fb3cefe53f8241f51115b9b0ea75..789ff9f45dd32958b8c097c8ffc28f1a60a8fd10 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1154 );
+define( 'UPDATE_VERSION' , 1155 );
 
 /**
  *
@@ -1344,3 +1344,10 @@ function update_1153() {
        return UPDATE_SUCCESS;
 }
 
+function update_1154() {
+       $r = q("UPDATE `item` SET `thr-parent`=`parent-uri` WHERE `id`!=`parent` AND `thr-parent`=''");
+       
+       if(!$r) return UPDATE_FAILED;
+       return UPDATE_SUCCESS;
+}
+