diff options
author | Friendika <info@friendika.com> | 2011-10-24 17:00:22 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-24 17:00:22 -0700 |
commit | 3b33c0d075fcce7f10468ad749742950077768b3 (patch) | |
tree | eb44df56f35d72c5771adc13b14048b73189a416 | |
parent | 4218e3f4945af7101c626852bda09d2c591b8e0c (diff) | |
download | volse-hubzilla-3b33c0d075fcce7f10468ad749742950077768b3.tar.gz volse-hubzilla-3b33c0d075fcce7f10468ad749742950077768b3.tar.bz2 volse-hubzilla-3b33c0d075fcce7f10468ad749742950077768b3.zip |
allow tag input to contain leading '#'
-rw-r--r-- | view/jot-header.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl index b06712407..ecf27e1b1 100644 --- a/view/jot-header.tpl +++ b/view/jot-header.tpl @@ -218,7 +218,7 @@ function initEditor(cb){ $('#like-rotator-' + id).show(); reply = prompt("$term"); if(reply && reply.length) { - reply.replace('#',''); + reply = reply.replace('#',''); if(reply.length) { $.get('tagger/' + id + '?term=' + reply, function(data) { $('#like-rotator-' + id).hide(); |