Changeset 3023896
- Timestamp:
- 01/19/2024 08:10:41 AM (2 years ago)
- Location:
- rabbit-loader
- Files:
-
- 1 added
- 6 edited
- 19 copied
-
tags/2.19.15 (added)
-
tags/2.19.15/admin (copied) (copied from rabbit-loader/trunk/admin)
-
tags/2.19.15/admin/js/index.js (copied) (copied from rabbit-loader/trunk/admin/js/index.js)
-
tags/2.19.15/admin/js/index.js.map (copied) (copied from rabbit-loader/trunk/admin/js/index.js.map)
-
tags/2.19.15/advanced-cache.php (copied) (copied from rabbit-loader/trunk/advanced-cache.php)
-
tags/2.19.15/assets (copied) (copied from rabbit-loader/trunk/assets)
-
tags/2.19.15/autoload.php (copied) (copied from rabbit-loader/trunk/autoload.php) (1 diff)
-
tags/2.19.15/images (copied) (copied from rabbit-loader/trunk/images)
-
tags/2.19.15/inc (copied) (copied from rabbit-loader/trunk/inc)
-
tags/2.19.15/inc/RabbitLoader/SDK/Request.php (copied) (copied from rabbit-loader/trunk/inc/RabbitLoader/SDK/Request.php)
-
tags/2.19.15/inc/admin.php (copied) (copied from rabbit-loader/trunk/inc/admin.php) (2 diffs)
-
tags/2.19.15/inc/public.php (copied) (copied from rabbit-loader/trunk/inc/public.php) (1 diff)
-
tags/2.19.15/inc/tab_init.php (copied) (copied from rabbit-loader/trunk/inc/tab_init.php)
-
tags/2.19.15/inc/tab_settings.php (copied) (copied from rabbit-loader/trunk/inc/tab_settings.php)
-
tags/2.19.15/inc/util_wp.php (copied) (copied from rabbit-loader/trunk/inc/util_wp.php) (1 diff)
-
tags/2.19.15/index.php (copied) (copied from rabbit-loader/trunk/index.php)
-
tags/2.19.15/rabbit-loader.php (copied) (copied from rabbit-loader/trunk/rabbit-loader.php) (1 diff)
-
tags/2.19.15/readme.txt (copied) (copied from rabbit-loader/trunk/readme.txt) (3 diffs)
-
tags/2.19.15/uninstall.php (copied) (copied from rabbit-loader/trunk/uninstall.php)
-
tags/2.19.15/wp-cli.php (copied) (copied from rabbit-loader/trunk/wp-cli.php)
-
trunk/autoload.php (modified) (1 diff)
-
trunk/inc/admin.php (modified) (2 diffs)
-
trunk/inc/public.php (modified) (1 diff)
-
trunk/inc/util_wp.php (modified) (1 diff)
-
trunk/rabbit-loader.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rabbit-loader/tags/2.19.15/autoload.php
r3020814 r3023896 4 4 define('RABBITLOADER_CACHE_DIR', WP_CONTENT_DIR . DIRECTORY_SEPARATOR . "rabbitloader"); 5 5 define('RABBITLOADER_PLUG_URL', plugin_dir_url(__FILE__)); 6 define('RABBITLOADER_PLUG_VERSION', '2.19.1 4');6 define('RABBITLOADER_PLUG_VERSION', '2.19.15'); 7 7 define('RABBITLOADER_TEXT_DOMAIN', 'rabbit-loader'); 8 8 define('RABBITLOADER_PLUG_ENV', 'PROD'); -
rabbit-loader/tags/2.19.15/inc/admin.php
r3020814 r3023896 25 25 'admin_ajax' => admin_url('admin-ajax.php'), 26 26 'hostname' => get_option('rabbitloader_field_domain'), 27 'rl_nonce' => wp_create_nonce(' ajax-nonce')27 'rl_nonce' => wp_create_nonce('rl-ajax-nonce') 28 28 ]); 29 29 }); … … 225 225 public static function admin_init() 226 226 { 227 self::survey_dismissed(0); 227 if (isset($_GET['rl_survey_dismissed'])) { 228 self::survey_dismissed(0); 229 } 228 230 } 229 231 -
rabbit-loader/tags/2.19.15/inc/public.php
r3020814 r3023896 207 207 'admin_ajax' => admin_url('admin-ajax.php'), 208 208 'post_id' => empty($post) ? 0 : $post->ID, 209 'rl_nonce' => wp_create_nonce(' ajax-nonce')209 'rl_nonce' => wp_create_nonce('rl-ajax-nonce') 210 210 ]); 211 211 } -
rabbit-loader/tags/2.19.15/inc/util_wp.php
r3020814 r3023896 295 295 public static function verifyAjaxNonce() 296 296 { 297 if (empty($_POST['rl_nonce']) || !wp_verify_nonce($_POST['rl_nonce'], ' ajax-nonce')) {297 if (empty($_POST['rl_nonce']) || !wp_verify_nonce($_POST['rl_nonce'], 'rl-ajax-nonce')) { 298 298 wp_send_json_error(null, 403); 299 299 } -
rabbit-loader/tags/2.19.15/rabbit-loader.php
r3020814 r3023896 7 7 * Author URI: https://rabbitloader.com/ 8 8 * Description: RabbitLoader can improve Google PageSpeed score and get you 100 out of 100 by improving the page load time to just a few milliseconds. It improves the Core Web Vitals score for your pages and boost PageSpeed score to help better search rankings and best the experience for your end user. 9 * Version: 2.19.1 49 * Version: 2.19.15 10 10 * Text Domain: rabbit-loader 11 11 */ -
rabbit-loader/tags/2.19.15/readme.txt
r3020814 r3023896 3 3 Tags: cache, caching, cdn, lazy loading, speed optimization 4 4 Requires at least: 4.7 5 Tested up to: 6. 36 Stable tag: 2.19.1 45 Tested up to: 6.4 6 Stable tag: 2.19.15 7 7 Requires PHP: 5.6 8 8 License: GNU General Public License, version 2 … … 26 26 27 27 * Obtain a PageSpeed Score of 95 or higher for all pages. 28 * Reduce image size by 40% with the NextGen WebP format.28 * Reduce image size by 40% with the NextGen AVIF/WebP format. 29 29 * Reduce CSS size by 98% automatically. 30 30 * Improve Core Web Vitals (lower FCP, FID, and CLS). … … 307 307 == Changelog == 308 308 309 = 2.19.15 = 310 * Bugfix for admin-ajax sending 403 in some cases 311 309 312 = 2.19.14 = 310 313 * Bugfix for WordPress installation from a backup -
rabbit-loader/trunk/autoload.php
r3020814 r3023896 4 4 define('RABBITLOADER_CACHE_DIR', WP_CONTENT_DIR . DIRECTORY_SEPARATOR . "rabbitloader"); 5 5 define('RABBITLOADER_PLUG_URL', plugin_dir_url(__FILE__)); 6 define('RABBITLOADER_PLUG_VERSION', '2.19.1 4');6 define('RABBITLOADER_PLUG_VERSION', '2.19.15'); 7 7 define('RABBITLOADER_TEXT_DOMAIN', 'rabbit-loader'); 8 8 define('RABBITLOADER_PLUG_ENV', 'PROD'); -
rabbit-loader/trunk/inc/admin.php
r3020814 r3023896 25 25 'admin_ajax' => admin_url('admin-ajax.php'), 26 26 'hostname' => get_option('rabbitloader_field_domain'), 27 'rl_nonce' => wp_create_nonce(' ajax-nonce')27 'rl_nonce' => wp_create_nonce('rl-ajax-nonce') 28 28 ]); 29 29 }); … … 225 225 public static function admin_init() 226 226 { 227 self::survey_dismissed(0); 227 if (isset($_GET['rl_survey_dismissed'])) { 228 self::survey_dismissed(0); 229 } 228 230 } 229 231 -
rabbit-loader/trunk/inc/public.php
r3020814 r3023896 207 207 'admin_ajax' => admin_url('admin-ajax.php'), 208 208 'post_id' => empty($post) ? 0 : $post->ID, 209 'rl_nonce' => wp_create_nonce(' ajax-nonce')209 'rl_nonce' => wp_create_nonce('rl-ajax-nonce') 210 210 ]); 211 211 } -
rabbit-loader/trunk/inc/util_wp.php
r3020814 r3023896 295 295 public static function verifyAjaxNonce() 296 296 { 297 if (empty($_POST['rl_nonce']) || !wp_verify_nonce($_POST['rl_nonce'], ' ajax-nonce')) {297 if (empty($_POST['rl_nonce']) || !wp_verify_nonce($_POST['rl_nonce'], 'rl-ajax-nonce')) { 298 298 wp_send_json_error(null, 403); 299 299 } -
rabbit-loader/trunk/rabbit-loader.php
r3020814 r3023896 7 7 * Author URI: https://rabbitloader.com/ 8 8 * Description: RabbitLoader can improve Google PageSpeed score and get you 100 out of 100 by improving the page load time to just a few milliseconds. It improves the Core Web Vitals score for your pages and boost PageSpeed score to help better search rankings and best the experience for your end user. 9 * Version: 2.19.1 49 * Version: 2.19.15 10 10 * Text Domain: rabbit-loader 11 11 */ -
rabbit-loader/trunk/readme.txt
r3020814 r3023896 3 3 Tags: cache, caching, cdn, lazy loading, speed optimization 4 4 Requires at least: 4.7 5 Tested up to: 6. 36 Stable tag: 2.19.1 45 Tested up to: 6.4 6 Stable tag: 2.19.15 7 7 Requires PHP: 5.6 8 8 License: GNU General Public License, version 2 … … 26 26 27 27 * Obtain a PageSpeed Score of 95 or higher for all pages. 28 * Reduce image size by 40% with the NextGen WebP format.28 * Reduce image size by 40% with the NextGen AVIF/WebP format. 29 29 * Reduce CSS size by 98% automatically. 30 30 * Improve Core Web Vitals (lower FCP, FID, and CLS). … … 307 307 == Changelog == 308 308 309 = 2.19.15 = 310 * Bugfix for admin-ajax sending 403 in some cases 311 309 312 = 2.19.14 = 310 313 * Bugfix for WordPress installation from a backup
Note: See TracChangeset
for help on using the changeset viewer.