fix bug #84, make imported messages from your clones show up on your wall

This commit is contained in:
friendica
2013-07-29 17:30:46 -07:00
parent 092ef64ac7
commit 7b3c29ebe6
6 changed files with 30 additions and 3 deletions

View File

@@ -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;
}