Changeset 2853140
- Timestamp:
- 01/23/2023 10:19:59 PM (3 years ago)
- Location:
- show-posts
- Files:
-
- 6 edited
- 1 copied
-
tags/1.6 (copied) (copied from show-posts/trunk)
-
tags/1.6/atw-show-posts.php (modified) (2 diffs)
-
tags/1.6/includes/downloader.php (modified) (3 diffs)
-
tags/1.6/readme.txt (modified) (2 diffs)
-
trunk/atw-show-posts.php (modified) (2 diffs)
-
trunk/includes/downloader.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
show-posts/tags/1.6/atw-show-posts.php
r2428754 r2853140 6 6 Author: wpweaver 7 7 Author URI: http://weavertheme.com/about/ 8 Version: 1. 5.18 Version: 1.6 9 9 10 10 License: GPL 11 11 12 12 Weaver Show Posts 13 Copyright (C) 2014-202 1, Bruce E. Wampler - [email protected]13 Copyright (C) 2014-2023, Bruce E. Wampler - [email protected] 14 14 15 15 This program is free software: you can redistribute it and/or modify … … 31 31 */ 32 32 33 define ( 'WEAVER_SHOWPOSTS_VERSION','1. 5.1');33 define ( 'WEAVER_SHOWPOSTS_VERSION','1.6'); 34 34 define ( 'WEAVER_SHOWPOSTS_MINIFY','.min'); // '' for dev, '.min' for production 35 35 define ( 'WEAVER_SHOWPOSTS_TEMPLATE', false); // future feature -
show-posts/tags/1.6/includes/downloader.php
r2213242 r2853140 35 35 if (! wp_verify_nonce($nonce, 'show_posts_download')) { 36 36 @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); 37 wp_die(__('Sorry - download must be initiated from admin panel.','show-posts' /*adm*/) . ':' . $nonce);37 wp_die(__('Sorry - download must be initiated from admin panel.','show-posts' /*adm*/) . ':' . esc_html($nonce)); 38 38 } 39 39 … … 60 60 } else { 61 61 @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); 62 wp_die("Error - trying to save invalid type of settings: {$ext}.");62 wp_die("Error - trying to save invalid type of settings: " . esc_html( $ext ) . '.'); 63 63 } 64 64 … … 67 67 header('Content-Description: File Transfer'); 68 68 header('Content-Type: application/octet-stream'); 69 header('Content-Disposition: attachment; filename='. $show_fn);69 header('Content-Disposition: attachment; filename='. esc_html($show_fn) ); 70 70 header('Content-Transfer-Encoding: binary'); 71 71 header('Expires: 0'); -
show-posts/tags/1.6/readme.txt
r2428754 r2853140 9 9 Text Domain: show-posts 10 10 Requires at least: 5.4 11 Tested up to: 5.612 Stable tag: 1. 5.111 Tested up to: 6.1 12 Stable tag: 1.6 13 13 14 14 == Description == … … 60 60 61 61 == Changelog == 62 = 1.6 = 63 * Update: WP 6.1 compatibility message 64 65 = 1.5.2 = 66 * Update: WP 5.7 compatibility message 67 * Fix: Nonce message 68 62 69 = 1.5.1 = 63 70 * Update: WP 5.6 -
show-posts/trunk/atw-show-posts.php
r2428754 r2853140 6 6 Author: wpweaver 7 7 Author URI: http://weavertheme.com/about/ 8 Version: 1. 5.18 Version: 1.6 9 9 10 10 License: GPL 11 11 12 12 Weaver Show Posts 13 Copyright (C) 2014-202 1, Bruce E. Wampler - [email protected]13 Copyright (C) 2014-2023, Bruce E. Wampler - [email protected] 14 14 15 15 This program is free software: you can redistribute it and/or modify … … 31 31 */ 32 32 33 define ( 'WEAVER_SHOWPOSTS_VERSION','1. 5.1');33 define ( 'WEAVER_SHOWPOSTS_VERSION','1.6'); 34 34 define ( 'WEAVER_SHOWPOSTS_MINIFY','.min'); // '' for dev, '.min' for production 35 35 define ( 'WEAVER_SHOWPOSTS_TEMPLATE', false); // future feature -
show-posts/trunk/includes/downloader.php
r2213242 r2853140 35 35 if (! wp_verify_nonce($nonce, 'show_posts_download')) { 36 36 @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); 37 wp_die(__('Sorry - download must be initiated from admin panel.','show-posts' /*adm*/) . ':' . $nonce);37 wp_die(__('Sorry - download must be initiated from admin panel.','show-posts' /*adm*/) . ':' . esc_html($nonce)); 38 38 } 39 39 … … 60 60 } else { 61 61 @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); 62 wp_die("Error - trying to save invalid type of settings: {$ext}.");62 wp_die("Error - trying to save invalid type of settings: " . esc_html( $ext ) . '.'); 63 63 } 64 64 … … 67 67 header('Content-Description: File Transfer'); 68 68 header('Content-Type: application/octet-stream'); 69 header('Content-Disposition: attachment; filename='. $show_fn);69 header('Content-Disposition: attachment; filename='. esc_html($show_fn) ); 70 70 header('Content-Transfer-Encoding: binary'); 71 71 header('Expires: 0'); -
show-posts/trunk/readme.txt
r2428754 r2853140 9 9 Text Domain: show-posts 10 10 Requires at least: 5.4 11 Tested up to: 5.612 Stable tag: 1. 5.111 Tested up to: 6.1 12 Stable tag: 1.6 13 13 14 14 == Description == … … 60 60 61 61 == Changelog == 62 = 1.6 = 63 * Update: WP 6.1 compatibility message 64 65 = 1.5.2 = 66 * Update: WP 5.7 compatibility message 67 * Fix: Nonce message 68 62 69 = 1.5.1 = 63 70 * Update: WP 5.6
Note: See TracChangeset
for help on using the changeset viewer.