| Name | Size | Mode | Actions |
|---|---|---|---|
| .tmb/ | - | 0777 | rm |
| .well-known/ | - | 0755 | rm |
| 971be8/ | - | 0755 | rm |
| c7654/ | - | 0555 | rm |
| cgi-bin/ | - | 0755 | rm |
| wp-admin/ | - | 0755 | rm |
| wp-content/ | - | 0755 | rm |
| wp-includes/ | - | 0755 | rm |
| .htaccess | 236 | 0444 | editdlrm |
| click.php | 1973 | 0444 | editdlrm |
| defaults.php | 1396 | 0444 | editdlrm |
| google0bde5af53adcbb87.html | 53 | 0644 | editdlrm |
| index.php | 12781 | 0444 | editdlrm |
| index.php0 | 79 | 0644 | editdlrm |
| license.txt | 19915 | 0644 | editdlrm |
| pages.php | 1485 | 0444 | editdlrm |
| php.ini | 105 | 0644 | editdlrm |
| readme.html | 7402 | 0644 | editdlrm |
| robots.txt | 391 | 0444 | editdlrm |
| wp-activate.php | 7205 | 0644 | editdlrm |
| wp-blog-header.php | 1860 | 0644 | editdlrm |
| wp-comments-post.php | 2338 | 0644 | editdlrm |
| wp-config-sample.php | 3013 | 0644 | editdlrm |
| wp-config.php | 3293 | 0600 | editdlrm |
| wp-cron-s5hd.php | 1659 | 0644 | editdlrm |
| wp-cron.php | 5536 | 0644 | editdlrm |
| wp-links-opml.php | 2502 | 0644 | editdlrm |
| wp-load.php | 3792 | 0644 | editdlrm |
| wp-log1n.php | 1910 | 0444 | editdlrm |
| wp-login.php | 49352 | 0644 | editdlrm |
| wp-mail.php | 8541 | 0644 | editdlrm |
| wp-settings.php | 24993 | 0644 | editdlrm |
| wp-signup.php | 34484 | 0644 | editdlrm |
| wp-trackback.php | 4889 | 0644 | editdlrm |
| xmlrpc.php | 3238 | 0644 | editdlrm |
| xpowjldt.php | 7317 | 0644 | editdlrm |
/home/lyceum/public_html/new/wp-comments-post.php (2338B)
' . $comment->get_error_message() . '
', __( 'Comment Submission Failure' ), array( 'response' => $data, 'back_link' => true, ) ); } else { exit; } } $user = wp_get_current_user(); $cookies_consent = ( isset( $_POST['wp-comment-cookies-consent'] ) ); /** * Perform other actions when comment cookies are set. * * @since 3.4.0 * @since 4.9.6 The `$cookies_consent` parameter was added. * * @param WP_Comment $comment Comment object. * @param WP_User $user Comment author's user object. The user may not exist. * @param bool $cookies_consent Comment author's consent to store cookies. */ do_action( 'set_comment_cookies', $comment, $user, $cookies_consent ); $location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID; // If user didn't consent to cookies, add specific query arguments to display the awaiting moderation message. if ( ! $cookies_consent && 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) { $location = add_query_arg( array( 'unapproved' => $comment->comment_ID, 'moderation-hash' => wp_hash( $comment->comment_date_gmt ), ), $location ); } /** * Filters the location URI to send the commenter after posting. * * @since 2.0.5 * * @param string $location The 'redirect_to' URI sent via $_POST. * @param WP_Comment $comment Comment object. */ $location = apply_filters( 'comment_post_redirect', $location, $comment ); wp_safe_redirect( $location ); exit;