From 454c05c391dc431ce9e25e217e18dca94125178b Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 20 Jun 2014 15:54:57 -0400 Subject: [PATCH] fixed missing var in user profile --- public/src/forum/account/header.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/forum/account/header.js b/public/src/forum/account/header.js index 1054eefd86..afda7961d0 100644 --- a/public/src/forum/account/header.js +++ b/public/src/forum/account/header.js @@ -18,7 +18,7 @@ define('forum/account/header', function() { $('#editLink, #settingsLink, #favouritesLink').removeClass('hide'); } else { $('.account-sub-links .plugin-link').each(function() { - $this = $(this); + var $this = $(this); $this.toggleClass('hide', $this.hasClass('private')); }); }