From: Friendika Date: Tue, 25 Oct 2011 00:00:22 +0000 (-0700) Subject: allow tag input to contain leading '#' X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3b33c0d075fcce7f10468ad749742950077768b3;p=friendica.git allow tag input to contain leading '#' --- diff --git a/view/jot-header.tpl b/view/jot-header.tpl index b067124072..ecf27e1b17 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();