aboutsummaryrefslogtreecommitdiffstats
path: root/view/jot-header.tpl
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-11-09 00:29:14 -0800
committerFriendika <info@friendika.com>2011-11-09 00:29:14 -0800
commitd6d4d3ed3a02c844a7ff0c48411f8b014cff3ee9 (patch)
tree8054bdd88ff780bd1bc7d3bc0c031347b57879eb /view/jot-header.tpl
parent20ca93191fda9f25f387e354a8ac4edd9582ded5 (diff)
downloadvolse-hubzilla-d6d4d3ed3a02c844a7ff0c48411f8b014cff3ee9.tar.gz
volse-hubzilla-d6d4d3ed3a02c844a7ff0c48411f8b014cff3ee9.tar.bz2
volse-hubzilla-d6d4d3ed3a02c844a7ff0c48411f8b014cff3ee9.zip
various testbubble fixes
Diffstat (limited to 'view/jot-header.tpl')
-rw-r--r--view/jot-header.tpl3
1 files changed, 2 insertions, 1 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl
index 9ded3e9b4..81d7d6d91 100644
--- a/view/jot-header.tpl
+++ b/view/jot-header.tpl
@@ -222,8 +222,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);