small fixes, removed old unused database row, and log more prominently a missing directory server URL

This commit is contained in:
redmatrix 2015-11-12 16:45:38 -08:00
parent 5afe8e5aa1
commit 391807b46c
3 changed files with 3 additions and 2 deletions

View File

@ -44,7 +44,6 @@ CREATE TABLE "abook" (
create index "abook_profile" on abook ("abook_profile");
create index "abook_dob" on abook ("abook_dob");
create index "abook_connected" on abook ("abook_connected");
create index "abook_rating" on abook ("abook_rating");
create index "abook_channel_closeness" on abook ("abook_channel", "abook_closeness");
CREATE TABLE "account" (

View File

@ -121,6 +121,8 @@ function directory_content(&$a) {
}
if(! $url) {
$directory = find_upstream_directory($dirmode);
if((! $directory) || (! array_key_exists('url',$directory)) || (! $directory['url']))
logger('CRITICAL: No directory server URL');
$url = $directory['url'] . '/dirsearch';
}

View File

@ -1 +1 @@
2015-11-11.1213
2015-11-12.1214