aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-07-29 17:30:46 -0700
committerfriendica <info@friendica.com>2013-07-29 17:30:46 -0700
commit7b3c29ebe69726f7d42c9327bebb2ea7251bccb4 (patch)
treeeea014afe0989f657768eaf56cacf0f33a6e88df /install/update.php
parent092ef64ac78d7535788ba03b0d940fa311e0934d (diff)
downloadvolse-hubzilla-7b3c29ebe69726f7d42c9327bebb2ea7251bccb4.tar.gz
volse-hubzilla-7b3c29ebe69726f7d42c9327bebb2ea7251bccb4.tar.bz2
volse-hubzilla-7b3c29ebe69726f7d42c9327bebb2ea7251bccb4.zip
fix bug #84, make imported messages from your clones show up on your wall
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index ba9e9e430..1ea9aa377 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1054 );
+define( 'UPDATE_VERSION' , 1055 );
/**
*
@@ -641,3 +641,10 @@ function update_r1053() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
+
+function update_r1054() {
+ $r = q("ALTER TABLE `item` CHANGE `title` `title` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' ");
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}