since this last update, the code that I'm using to show level_1 users (contributors) vs level_0 (subscribers) isn't working the way that it used to.
here's what I'm using:
<?php
if ( current_user_can('level_1') ) { ?>
<?php include(ABSPATH . 'wp-dropdown-comments.php'); ?>
<?php } else { ?>
<?php comments_template(); // Get wp-comments.php template ?>
<?php } ?>
what happening is that anyone that's logged in can see the level_1 content. any ideas as to what's going on here?