_abuse_get_pending_count

Definition

_abuse_get_pending_count()
abuse/abuse.module, line 1080

Code

<?php
function _abuse_get_pending_count() {
  return db_result(db_query("SELECT COUNT(*) FROM {abuse_status} WHERE status = %d", ABUSE_PENDING));
}
?>