Browse Source

show-own-posts.js: fix a bug

pull/40/head
czaks 10 years ago
parent
commit
638931b02d
  1. 2
      js/show-own-posts.js

2
js/show-own-posts.js

@ -47,7 +47,7 @@ var update_own = function() {
else
return;
if (posts[board].indexOf(postID) !== -1) {
if (posts[board] && posts[board].indexOf(postID) !== -1) {
$(this).after(' <small>'+_('(You)')+'</small>');
}
});

Loading…
Cancel
Save