aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-05-27 21:10:52 -0700
committerzotlabs <mike@macgirvin.com>2018-05-27 21:10:52 -0700
commitc115e8ee60887da57d64a194cd09e2c97fe987eb (patch)
tree0c0927613936c5cc127a0baf6df759dde9bddc74
parentddebbcc0a08aae9cd33bb3105ce1f2c8863b544c (diff)
parent5a475453ab2939836ab8a541de6ca9608781a0c8 (diff)
downloadvolse-hubzilla-c115e8ee60887da57d64a194cd09e2c97fe987eb.tar.gz
volse-hubzilla-c115e8ee60887da57d64a194cd09e2c97fe987eb.tar.bz2
volse-hubzilla-c115e8ee60887da57d64a194cd09e2c97fe987eb.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
-rwxr-xr-xview/tpl/jot-header.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 22413f350..365a922f9 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -365,12 +365,12 @@ var activeCommentText = '';
if($('#jot-nocomment').val() > 0) {
$('#jot-nocomment').val(0);
$('#profile-nocomment, #profile-nocomment-sub').removeClass('fa-comments-o').addClass('fa-comments');
- $('#profile-nocomment-wrapper').attr('title', '{{$nocomment_enabled}}');
+ $('#profile-nocomment-wrapper').attr('title', '{{$nocomment_enabled|escape:'javascript'}}');
}
else {
$('#jot-nocomment').val(1);
$('#profile-nocomment, #profile-nocomment-sub').removeClass('fa-comments').addClass('fa-comments-o');
- $('#profile-nocomment-wrapper').attr('title', '{{$nocomment_disabled}}');
+ $('#profile-nocomment-wrapper').attr('title', '{{$nocomment_disabled|escape:'javascript'}}');
}
}