diff options
author | RedMatrix <info@friendica.com> | 2015-01-30 10:17:43 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2015-01-30 10:17:43 +1100 |
commit | 1ec6e62ed34ed8665da188f8a8427bf470bcc02e (patch) | |
tree | 89a552b7974f7832d8aa36c8da36fb2496d75885 /view/js/autocomplete.js | |
parent | 872b165eb2bb5d632a12f2d7e1a28e195c2d5348 (diff) | |
parent | 05ce141ecc13d2af754b1e055b1856e73a65d7dd (diff) | |
download | volse-hubzilla-1ec6e62ed34ed8665da188f8a8427bf470bcc02e.tar.gz volse-hubzilla-1ec6e62ed34ed8665da188f8a8427bf470bcc02e.tar.bz2 volse-hubzilla-1ec6e62ed34ed8665da188f8a8427bf470bcc02e.zip |
Merge pull request #880 from redswede/master
fixes
Diffstat (limited to 'view/js/autocomplete.js')
-rw-r--r-- | view/js/autocomplete.js | 2 |
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) { |