Plugin Directory

Changeset 3126486


Ignore:
Timestamp:
07/27/2024 11:19:11 AM (20 months ago)
Author:
seshelby
Message:

Releasing version 1.0.15

Location:
html-validation
Files:
13 added
3 edited

Legend:

Unmodified
Added
Removed
  • html-validation/trunk/html-validation.php

    r3057374 r3126486  
    33 * Plugin Name: HTML Validation
    44 * Description:  The HTML Validation Plugin runs in the background, identifies and report HTML validation errors on your website. Once activated, the HTML Validation plugin uses WordPress cron to scan your website content in the background. A progress bar on the report screen indicates scan progress. HTML Validation is provided by Validator.nu. Please refer to the provided privacy policy and terms of use. Posts may also be scanned using the Validate HTML link provided on the "All Posts" screen.
    5  * Version: 1.0.14
     5 * Version: 1.0.15
    66 * Plugin URI: https://wordpress.org/plugins/html-validation
    77 * Author: AlumniOnline Web Services LLC
  • html-validation/trunk/readme.txt

    r3124225 r3126486  
    66Tested up to: 6.6
    77Requires PHP: 5.5
    8 Stable tag: 1.0.14
     8Stable tag: 1.0.15
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2323
    2424== Changelog ==
     25- 1.0.15
     261. Corrected php warnings
     27
    2528- 1.0.14
    26291. Corrected csrf vulnerability
  • html-validation/trunk/res/reports.php

    r3057374 r3126486  
    3535    $total       = 0;
    3636    $offset      = 0;
     37    $validate = '0';
    3738    $per_page    = get_option( 'html_validation_errors_per_page', '5' );
    3839
     
    382383    }
    383384
    384     if ( '' != $pagination ) {
     385    if (isset($pagination) && '' != $pagination ) {
    385386        echo '<p class="html_validation_pagination">' . wp_kses_post( $pagination ) . '</p>';
    386387    }
     
    519520    $error = array();
    520521
    521     if ( '0' == $ajaxnonce && ! isset( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_REQUEST['_wpnonce'] ) ) ) {
     522    if ( '0' == $ajaxnonce && ! isset( $_REQUEST['_wpnonce'] ) || (isset( $_REQUEST['_wpnonce'] ) && ! wp_verify_nonce( sanitize_key( $_REQUEST['_wpnonce'] ) ) ) ) {
    522523        return $error;
    523524    }
Note: See TracChangeset for help on using the changeset viewer.