diff --git a/boot.php b/boot.php
index 9582147cac..707ca19882 100644
--- a/boot.php
+++ b/boot.php
@@ -11,7 +11,7 @@ require_once('include/cache.php');
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
define ( 'FRIENDIKA_VERSION', '2.3.1146' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
-define ( 'DB_UPDATE_VERSION', 1098 );
+define ( 'DB_UPDATE_VERSION', 1099 );
define ( 'EOL', "
\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
diff --git a/database.sql b/database.sql
index 5d7a3020cf..ead3637955 100644
--- a/database.sql
+++ b/database.sql
@@ -100,6 +100,13 @@ CREATE TABLE IF NOT EXISTS `contact` (
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `self` (`self`),
+ KEY `network` (`network`),
+ KEY `name` (`name`),
+ KEY `nick` (`nick`),
+ KEY `attag` (`attag`),
+ KEY `url` (`url`),
+ KEY `addr` (`addr`),
+ KEY `batch` (`batch`),
KEY `issued-id` (`issued-id`),
KEY `dfrn-id` (`dfrn-id`),
KEY `blocked` (`blocked`),
diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js
index 1484758add..6a1f1965aa 100644
--- a/js/fk.autocomplete.js
+++ b/js/fk.autocomplete.js
@@ -65,7 +65,7 @@ ACPopup.prototype._search = function(){
that.cont.show();
$(data.items).each(function(){
html = "{1} ({2})".format(this.photo, this.name, this.nick)
- that.add(html, this.nick);
+ that.add(html, this.nick + ' - ' + this.link);
});
} else {
that.cont.hide();
@@ -78,7 +78,7 @@ ACPopup.prototype.add = function(label, value){
var that=this;
var elm = $("