]> git.mxchange.org Git - friendica.git/commitdiff
reorder the update of the item table as instructed by Michael Vogel
authorzottel <github@zottel.net>
Fri, 22 Feb 2013 12:26:11 +0000 (13:26 +0100)
committerzottel <github@zottel.net>
Fri, 22 Feb 2013 12:26:11 +0000 (13:26 +0100)
boot.php
update.php

index 200ce28172fa222b33103f6e2b18efb3e387b7df..93dbd5abab47b0ce21b4999485a6398d33e87fee 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -14,7 +14,7 @@ require_once('include/features.php');
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_VERSION',      '3.1.1618' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1162      );
+define ( 'DB_UPDATE_VERSION',      1163      );
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
 
index 6dd58757b9fd6830c3f843e4108ac7bbe0a60155..40f22e6aa61e9835c3385fa8b0a8e5951d3a24cd 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1162 );
+define( 'UPDATE_VERSION' , 1163 );
 
 /**
  *
@@ -1409,9 +1409,6 @@ function update_1159() {
        if(!$r)
                return UPDATE_FAILED;
 
-       require_once('include/tags.php');
-       update_items();
-
        return UPDATE_SUCCESS;
 }
 
@@ -1439,3 +1436,8 @@ function update_1161() {
 
        return UPDATE_SUCCESS;
 }
+
+function update_1162() {
+       require_once('include/tags.php');
+       update_items();
+}