]> git.mxchange.org Git - friendica.git/blobdiff - update.php
resolve file inclusion conflicts w/ multiple plugins, improve the typo checker
[friendica.git] / update.php
index f909837470068b7c9f97220af56a3f9fde764934..131014d4a4424864b81f85abc19463c685066cb1 100644 (file)
@@ -342,3 +342,35 @@ function update_1034() {
        q("DELETE FROM `item` WHERE `parent` = 0 AND `created` < UTC_TIMESTAMP() - INTERVAL 2 MINUTE");
 
 }
+
+
+function update_1035() {
+
+       q("ALTER TABLE `contact` ADD `success_update` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `last-update` ");
+
+}
+
+function update_1036() {
+
+       $r = dbq("SELECT * FROM `contact` WHERE `network` = 'dfrn' && `photo` LIKE '%include/photo%' ");
+       if(count($r)) {
+               foreach($r as $rr) {
+                       q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s' WHERE `id` = %d LIMIT 1",
+                               dbesc(str_replace('include/photo','photo',$rr['photo'])),
+                               dbesc(str_replace('include/photo','photo',$rr['thumb'])),
+                               dbesc(str_replace('include/photo','photo',$rr['micro'])),
+                               intval($rr['id']));
+               }
+       }
+}
+
+function update_1037() {
+
+       q("ALTER TABLE `contact` CHANGE `lrdd` `alias` CHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL ");
+
+}
+
+function update_1038() {
+ q("ALTER TABLE `item` ADD `plink` CHAR( 255 ) NOT NULL AFTER `target` ");
+}
+