Plugin Directory

Changeset 2958807


Ignore:
Timestamp:
08/27/2023 10:51:25 AM (3 years ago)
Author:
jorcus
Message:

Fixed: Deprecation warning on PHP 8.2

Location:
lazy-load-adsense
Files:
13 added
3 edited

Legend:

Unmodified
Added
Removed
  • lazy-load-adsense/trunk/README.txt

    r2952977 r2958807  
    55Requires at least: 5.0.1
    66Tested up to: 6.3.0
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    5959
    6060== Changelog ==
     61= 1.2.2 =
     62* Fixed: Deprecation warning on PHP 8.2
     63
    6164= 1.2.1 =
    6265* Improvement: Optimize and Reduce the code.
  • lazy-load-adsense/trunk/includes/class-lazyload_adsense.php

    r2952885 r2958807  
    2323 * version of the plugin.
    2424 *
    25  * @since      1.0.0
     25 * @since      1.2.2
    2626 * @package    Lazyload_adsense
    2727 * @subpackage Lazyload_adsense/includes
     
    2929 */
    3030class Lazyload_adsense {
     31    /**
     32     * The loader that's responsible for maintaining and registering all hooks that power
     33     * the plugin.
     34     *
     35     * @since    1.2.2
     36     * @access   protected
     37     * @var      Lazyload_adsense_Loader    $loader    Maintains and registers all hooks for the plugin.
     38     */
     39    protected $loader;
     40
    3141    /**
    3242     * The unique identifier of this plugin.
     
    7585     * Include the following files that make up the plugin:
    7686     *
     87     * - Lazyload_adsense_Loader. Orchestrates the hooks of the plugin.
    7788     * - Lazyload_adsense_Admin. Defines all hooks for the admin area.
    7889     * - Lazyload_adsense_Public. Defines all hooks for the public side of the site.
  • lazy-load-adsense/trunk/lazyload_adsense.php

    r2952885 r2958807  
    55 * Plugin URI:        https://www.jorcus.com/
    66 * Description:       Place Google AdSense ads without affecting your page speed with lazy load technologies.
    7  * Version:           1.2.1
     7 * Version:           1.2.2
    88 * Author:            Jorcus
    99 * Author URI:        https://jorcus.com/
     
    1818}
    1919
    20 define( 'LAZYLOAD_ADSENSE_VERSION', '1.2.1' );
     20define( 'LAZYLOAD_ADSENSE_VERSION', '1.2.2' );
    2121
    2222
Note: See TracChangeset for help on using the changeset viewer.