Changeset 3126486
- Timestamp:
- 07/27/2024 11:19:11 AM (20 months ago)
- Location:
- html-validation
- Files:
-
- 13 added
- 3 edited
-
tags/1.0.15 (added)
-
tags/1.0.15/html-validation.php (added)
-
tags/1.0.15/readme.txt (added)
-
tags/1.0.15/res (added)
-
tags/1.0.15/res/cron.php (added)
-
tags/1.0.15/res/html_validation.php (added)
-
tags/1.0.15/res/installation.php (added)
-
tags/1.0.15/res/purge.php (added)
-
tags/1.0.15/res/reports.php (added)
-
tags/1.0.15/res/scan.php (added)
-
tags/1.0.15/res/settings.php (added)
-
tags/1.0.15/scripts.js (added)
-
tags/1.0.15/styles.css (added)
-
trunk/html-validation.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/res/reports.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
html-validation/trunk/html-validation.php
r3057374 r3126486 3 3 * Plugin Name: HTML Validation 4 4 * 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.1 45 * Version: 1.0.15 6 6 * Plugin URI: https://wordpress.org/plugins/html-validation 7 7 * Author: AlumniOnline Web Services LLC -
html-validation/trunk/readme.txt
r3124225 r3126486 6 6 Tested up to: 6.6 7 7 Requires PHP: 5.5 8 Stable tag: 1.0.1 48 Stable tag: 1.0.15 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 23 23 24 24 == Changelog == 25 - 1.0.15 26 1. Corrected php warnings 27 25 28 - 1.0.14 26 29 1. Corrected csrf vulnerability -
html-validation/trunk/res/reports.php
r3057374 r3126486 35 35 $total = 0; 36 36 $offset = 0; 37 $validate = '0'; 37 38 $per_page = get_option( 'html_validation_errors_per_page', '5' ); 38 39 … … 382 383 } 383 384 384 if ( '' != $pagination ) {385 if (isset($pagination) && '' != $pagination ) { 385 386 echo '<p class="html_validation_pagination">' . wp_kses_post( $pagination ) . '</p>'; 386 387 } … … 519 520 $error = array(); 520 521 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'] ) ) ) ) { 522 523 return $error; 523 524 }
Note: See TracChangeset
for help on using the changeset viewer.