Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thanks for the dashboard update. Looks good.

    Not sure if anyone else has experienced this but I also noticed some issues with WP 3.0 when POST-ing a comment report.

    1. a JS error occurs
    2. a 404 response is seen in firebug despite the proper POST response

    The JS error is due to a call to undefined die() JS function in report-comments.php. I’ve updated the function at this line from die() to alert().
    mysack.onError = function() { alert(

    For the 404 response, since the actual JSON POST response looks fine, I added the following to report.php just before the last echo statement to send a proper header response.
    status_header(200);

    The AJAX messages render properly after making these changes. Hope this helps someone else out. Would love to see the actual plugin updated too.

Viewing 1 replies (of 1 total)