diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-01-05 11:40:41 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-01-05 11:40:41 +0100 |
commit | be7719443587d85402813211d78d7c562a93518b (patch) | |
tree | 5aed97cb821ee0d8d4b753f8ec46c801a0c65a41 /phpBB/styles/prosilver | |
parent | b5cc1ed683c1e8ca2e189e75e0e3302cc37c5fbf (diff) | |
download | forums-be7719443587d85402813211d78d7c562a93518b.tar forums-be7719443587d85402813211d78d7c562a93518b.tar.gz forums-be7719443587d85402813211d78d7c562a93518b.tar.bz2 forums-be7719443587d85402813211d78d7c562a93518b.tar.xz forums-be7719443587d85402813211d78d7c562a93518b.zip |
[ticket/10949] Remove not needed comma
This comma might actually cause issues in browser. Therefore remove it.
PHPBB3-10949
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js index 7f5ab17f99..8583fb565c 100644 --- a/phpBB/styles/prosilver/template/ajax.js +++ b/phpBB/styles/prosilver/template/ajax.js @@ -20,7 +20,7 @@ phpbb.addAjaxCallback('mark_forums_read', function(res) { var iconsArray = { 'forum_unread': 'forum_read', 'forum_unread_subforum': 'forum_read_subforum', - 'forum_unread_locked': 'forum_read_locked', + 'forum_unread_locked': 'forum_read_locked' }; $('li.row').find('dl[class*="forum_unread"]').each(function() { |