From d9ac6a80a3d99700ea8fafa296b0dcd524d44f42 Mon Sep 17 00:00:00 2001 From: Daniela Soares Feitosa Date: Mon, 25 Feb 2013 09:34:45 -0300 Subject: [PATCH] Fixed syntax error on javascript --- plugins/require_auth_to_comment/public/hide_comment_form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/require_auth_to_comment/public/hide_comment_form.js b/plugins/require_auth_to_comment/public/hide_comment_form.js index 018bbd5..29ac0e2 100644 --- a/plugins/require_auth_to_comment/public/hide_comment_form.js +++ b/plugins/require_auth_to_comment/public/hide_comment_form.js @@ -1,6 +1,6 @@ (function($) { $(window).bind('userDataLoaded', function(event, data) { - if (data.login || $('meta[name=profile.allow_unauthenticated_comments]').length > 0) { + if (data.login || $('meta[name="profile.allow_unauthenticated_comments"]').length > 0) { $('.post-comment-button').show(); $('#page-comment-form').show(); $('.comment-footer').show(); -- libgit2 0.21.2