allow zot public providers to list their location, as a non US-based server could be a strong selling point.

This commit is contained in:
friendica
2013-10-30 01:58:45 -07:00
parent 8da4da37cc
commit 2035a5dd76
7 changed files with 24 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1079 );
define( 'UPDATE_VERSION' , 1080 );
/**
*
@@ -881,3 +881,10 @@ function update_r1078() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
function update_r1079() {
$r = q("ALTER TABLE `site` ADD `site_location` CHAR( 255 ) NOT NULL DEFAULT ''");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}