1
1
Fork 0

more private forums, default privacy group for new contacts

This commit is contained in:
friendica 2012-05-17 22:44:52 -07:00
commit 7b0ded3f14
13 changed files with 130 additions and 33 deletions

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1143 );
define( 'UPDATE_VERSION' , 1144 );
/**
*
@ -1246,5 +1246,12 @@ function update_1142() {
return UPDATE_SUCCESS ;
}
function update_1143() {
$r = q("alter table user add def_gid int(11) not null default '0' after service_class");
if(! $r)
return UPDATE_FAILED ;
return UPDATE_SUCCESS ;
}