You appear to be a bot. Output may be restricted
Description
Usage
Akismet_Admin::remove_comment_author_url();
Parameters
Returns
void
Source
File name: akismet/class.akismet-admin.php
Lines:
1 to 12 of 12
public static function remove_comment_author_url() { if ( !empty( $_POST['id'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) { $comment_id = intval( $_POST['id'] ); $comment = get_comment( $comment_id, ARRAY_A ); if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) { $comment['comment_author_url'] = ''; do_action( 'comment_remove_author_url' ); print( wp_update_comment( $comment ) ); die(); } } }