Files
gallery3/modules/akismet/views/admin_akismet_stats.html.php
Bharat Mediratta 8bf388a6f6 Incremental improvement in comment moderation:
1) Akismet now detects when we change a comment's published state and submits
   info back to akismet.com as appropriate

2) We now show 4 different queues (all / approved / unapproved / spam) and let you
   move messages between the queues

3) We track and display "spam caught" stats.

4) You can delete comments entirely.
2009-01-08 02:50:23 +00:00

12 lines
429 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<script type="text/javscript">
$(document).ready(function() {
$("#gAkismetExternalStats").css("height", "600");
});
</script>
<div id="gAkismetStats">
<iframe id="gAkismetExternalStats" width="100%" height="100%" frameborder="0"
src="http://<?= $api_key ?>.web.akismet.com/1.0/user-stats.php?blog=<?= urlencode($blog_url) ?>">
</iframe>
</div>