diff options
author | Friendika <info@friendika.com> | 2011-11-09 18:29:30 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-11-09 18:29:30 -0800 |
commit | e35f3f1ada264c03fe0c54e5ed0672c5a66ca001 (patch) | |
tree | 80b98f2c6b348b837167539b35a05fc016e01655 /view/theme/dispy/jot-header.tpl | |
parent | a2018e2d145d0e8189abf3f6e2e75d571b35f029 (diff) | |
parent | 2b1e01185144ecc0ff5de457efcad5734dd932c8 (diff) | |
download | volse-hubzilla-e35f3f1ada264c03fe0c54e5ed0672c5a66ca001.tar.gz volse-hubzilla-e35f3f1ada264c03fe0c54e5ed0672c5a66ca001.tar.bz2 volse-hubzilla-e35f3f1ada264c03fe0c54e5ed0672c5a66ca001.zip |
Merge branch 'master' into contacts
Diffstat (limited to 'view/theme/dispy/jot-header.tpl')
-rw-r--r-- | view/theme/dispy/jot-header.tpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/theme/dispy/jot-header.tpl b/view/theme/dispy/jot-header.tpl index 79b10fd40..7a1012230 100644 --- a/view/theme/dispy/jot-header.tpl +++ b/view/theme/dispy/jot-header.tpl @@ -229,8 +229,9 @@ function initEditor(cb) { event.target.textContent = reply; event.preventDefault(); if(reply && reply.length) { + reply = bin2hex(reply); $('#profile-rotator').show(); - $.get('parse_url?url=' + reply, function(data) { + $.get('parse_url?binurl=' + reply, function(data) { if (!editor) $("#profile-jot-text").val(""); initEditor(function(){ tinyMCE.execCommand('mceInsertRawHTML',false,data); |