aboutsummaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-11-21 13:52:15 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2011-11-21 13:52:15 +0100
commitcb05e677a96e1312263c0a1c63ee10cea62268b1 (patch)
tree9234db8ab0c946ed65123181acba0df71524a8eb /js
parenta86fd26bd86945fe75b7220e149b8986f88feb01 (diff)
parentaaedac8f574278fba89cd11d3d8f1adaeb6b030e (diff)
downloadvolse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.gz
volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.bz2
volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.zip
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'js')
-rw-r--r--js/fk.autocomplete.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js
index 545fd1645..85b51baeb 100644
--- a/js/fk.autocomplete.js
+++ b/js/fk.autocomplete.js
@@ -80,7 +80,7 @@ ACPopup.prototype._search = function(){
that.cont.show();
$(data.items).each(function(){
html = "<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo, this.name, this.nick)
- that.add(html, this.nick + '+' + this.id + ' - ' + this.link);
+ that.add(html, this.nick.replace(' ','') + '+' + this.id + ' - ' + this.link);
});
} else {
that.cont.hide();