mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
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.
12 lines
429 B
PHP
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>
|