Plugin Directory

Changeset 3023896


Ignore:
Timestamp:
01/19/2024 08:10:41 AM (2 years ago)
Author:
sanrl
Message:

v2.19.15 release

Location:
rabbit-loader
Files:
1 added
6 edited
19 copied

Legend:

Unmodified
Added
Removed
  • rabbit-loader/tags/2.19.15/autoload.php

    r3020814 r3023896  
    44define('RABBITLOADER_CACHE_DIR', WP_CONTENT_DIR . DIRECTORY_SEPARATOR . "rabbitloader");
    55define('RABBITLOADER_PLUG_URL', plugin_dir_url(__FILE__));
    6 define('RABBITLOADER_PLUG_VERSION', '2.19.14');
     6define('RABBITLOADER_PLUG_VERSION', '2.19.15');
    77define('RABBITLOADER_TEXT_DOMAIN', 'rabbit-loader');
    88define('RABBITLOADER_PLUG_ENV', 'PROD');
  • rabbit-loader/tags/2.19.15/inc/admin.php

    r3020814 r3023896  
    2525                'admin_ajax' => admin_url('admin-ajax.php'),
    2626                'hostname' => get_option('rabbitloader_field_domain'),
    27                 'rl_nonce' => wp_create_nonce('ajax-nonce')
     27                'rl_nonce' => wp_create_nonce('rl-ajax-nonce')
    2828            ]);
    2929        });
     
    225225    public static function admin_init()
    226226    {
    227         self::survey_dismissed(0);
     227        if (isset($_GET['rl_survey_dismissed'])) {
     228            self::survey_dismissed(0);
     229        }
    228230    }
    229231
  • rabbit-loader/tags/2.19.15/inc/public.php

    r3020814 r3023896  
    207207            'admin_ajax' => admin_url('admin-ajax.php'),
    208208            'post_id' => empty($post) ? 0 : $post->ID,
    209             'rl_nonce' => wp_create_nonce('ajax-nonce')
     209            'rl_nonce' => wp_create_nonce('rl-ajax-nonce')
    210210        ]);
    211211    }
  • rabbit-loader/tags/2.19.15/inc/util_wp.php

    r3020814 r3023896  
    295295    public static function verifyAjaxNonce()
    296296    {
    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')) {
    298298            wp_send_json_error(null, 403);
    299299        }
  • rabbit-loader/tags/2.19.15/rabbit-loader.php

    r3020814 r3023896  
    77 * Author URI:   https://rabbitloader.com/
    88 * 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.14
     9 * Version: 2.19.15
    1010 * Text Domain: rabbit-loader
    1111 */
  • rabbit-loader/tags/2.19.15/readme.txt

    r3020814 r3023896  
    33Tags: cache, caching, cdn, lazy loading, speed optimization
    44Requires at least: 4.7
    5 Tested up to: 6.3
    6 Stable tag: 2.19.14
     5Tested up to: 6.4
     6Stable tag: 2.19.15
    77Requires PHP: 5.6
    88License: GNU General Public License, version 2
     
    2626
    2727*   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.
    2929*   Reduce CSS size by 98% automatically.
    3030*   Improve Core Web Vitals (lower FCP, FID, and CLS).
     
    307307== Changelog ==
    308308
     309= 2.19.15 =
     310* Bugfix for admin-ajax sending 403 in some cases
     311
    309312= 2.19.14 =
    310313* Bugfix for WordPress installation from a backup
  • rabbit-loader/trunk/autoload.php

    r3020814 r3023896  
    44define('RABBITLOADER_CACHE_DIR', WP_CONTENT_DIR . DIRECTORY_SEPARATOR . "rabbitloader");
    55define('RABBITLOADER_PLUG_URL', plugin_dir_url(__FILE__));
    6 define('RABBITLOADER_PLUG_VERSION', '2.19.14');
     6define('RABBITLOADER_PLUG_VERSION', '2.19.15');
    77define('RABBITLOADER_TEXT_DOMAIN', 'rabbit-loader');
    88define('RABBITLOADER_PLUG_ENV', 'PROD');
  • rabbit-loader/trunk/inc/admin.php

    r3020814 r3023896  
    2525                'admin_ajax' => admin_url('admin-ajax.php'),
    2626                'hostname' => get_option('rabbitloader_field_domain'),
    27                 'rl_nonce' => wp_create_nonce('ajax-nonce')
     27                'rl_nonce' => wp_create_nonce('rl-ajax-nonce')
    2828            ]);
    2929        });
     
    225225    public static function admin_init()
    226226    {
    227         self::survey_dismissed(0);
     227        if (isset($_GET['rl_survey_dismissed'])) {
     228            self::survey_dismissed(0);
     229        }
    228230    }
    229231
  • rabbit-loader/trunk/inc/public.php

    r3020814 r3023896  
    207207            'admin_ajax' => admin_url('admin-ajax.php'),
    208208            'post_id' => empty($post) ? 0 : $post->ID,
    209             'rl_nonce' => wp_create_nonce('ajax-nonce')
     209            'rl_nonce' => wp_create_nonce('rl-ajax-nonce')
    210210        ]);
    211211    }
  • rabbit-loader/trunk/inc/util_wp.php

    r3020814 r3023896  
    295295    public static function verifyAjaxNonce()
    296296    {
    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')) {
    298298            wp_send_json_error(null, 403);
    299299        }
  • rabbit-loader/trunk/rabbit-loader.php

    r3020814 r3023896  
    77 * Author URI:   https://rabbitloader.com/
    88 * 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.14
     9 * Version: 2.19.15
    1010 * Text Domain: rabbit-loader
    1111 */
  • rabbit-loader/trunk/readme.txt

    r3020814 r3023896  
    33Tags: cache, caching, cdn, lazy loading, speed optimization
    44Requires at least: 4.7
    5 Tested up to: 6.3
    6 Stable tag: 2.19.14
     5Tested up to: 6.4
     6Stable tag: 2.19.15
    77Requires PHP: 5.6
    88License: GNU General Public License, version 2
     
    2626
    2727*   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.
    2929*   Reduce CSS size by 98% automatically.
    3030*   Improve Core Web Vitals (lower FCP, FID, and CLS).
     
    307307== Changelog ==
    308308
     309= 2.19.15 =
     310* Bugfix for admin-ajax sending 403 in some cases
     311
    309312= 2.19.14 =
    310313* Bugfix for WordPress installation from a backup
Note: See TracChangeset for help on using the changeset viewer.