diff options
author | friendica <info@friendica.com> | 2015-02-24 16:36:27 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-24 16:36:27 -0800 |
commit | 08f054130f5a57e2928e129131e7609271ec7f40 (patch) | |
tree | e4eb2166044c05f750c78fc30742835ae5294f44 /install/update.php | |
parent | 11df605c2e065e123e58bd73525e7ca2113f40b8 (diff) | |
download | volse-hubzilla-08f054130f5a57e2928e129131e7609271ec7f40.tar.gz volse-hubzilla-08f054130f5a57e2928e129131e7609271ec7f40.tar.bz2 volse-hubzilla-08f054130f5a57e2928e129131e7609271ec7f40.zip |
require access token to view, query, or join directories in private realms, if the realm is so configured.
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 86731e165..ee13bee78 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1137 ); +define( 'UPDATE_VERSION' , 1138 ); /** * @@ -1568,3 +1568,11 @@ function update_r1136() { return UPDATE_SUCCESS; return UPDATE_FAILED; } + +function update_r1137() { + $r1 = q("alter table site add site_valid smallint not null default '0' "); + $r2 = q("create index site_valid on site ( site_valid ) "); + if($r1 && $r2) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |