aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/autocomplete.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-01-29 15:19:16 -0800
committerfriendica <info@friendica.com>2015-01-29 15:19:16 -0800
commitd7dae3c72a5d22cd29d4ba8cfd18e7139ede09ff (patch)
treebad34a3b7174a81f5b479c6653da39344f8df0fe /view/js/autocomplete.js
parente2edc2c96841588ade355890c49ff7a3c900078d (diff)
parent1ec6e62ed34ed8665da188f8a8427bf470bcc02e (diff)
downloadvolse-hubzilla-d7dae3c72a5d22cd29d4ba8cfd18e7139ede09ff.tar.gz
volse-hubzilla-d7dae3c72a5d22cd29d4ba8cfd18e7139ede09ff.tar.bz2
volse-hubzilla-d7dae3c72a5d22cd29d4ba8cfd18e7139ede09ff.zip
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'view/js/autocomplete.js')
-rw-r--r--view/js/autocomplete.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js
index 86847cb35..b93cc16b3 100644
--- a/view/js/autocomplete.js
+++ b/view/js/autocomplete.js
@@ -77,7 +77,7 @@ function editor_replace(item) {
// 16 chars is also the minimum length in the backend (otherwise it's interpreted as a local id).
if(id.length > 16)
id = item.id.substring(0,16);
- return '$1$2'+item.nick.replace(' ','') + '+' + id;
+ return '$1$2'+item.nick.replace(' ','') + '+' + id + ' ';
}
function basic_replace(item) {