Plugin Directory

Changeset 2980689


Ignore:
Timestamp:
10/18/2023 01:38:55 PM (2 years ago)
Author:
piwikpro
Message:

Version 1.3.1

Location:
piwik-pro
Files:
68 added
3 edited

Legend:

Unmodified
Added
Removed
  • piwik-pro/trunk/README.txt

    r2971831 r2980689  
    44Requires at least: 5.7
    55Tested up to: 6.3.1
    6 Stable tag: 1.3.0
     6Stable tag: 1.3.1
    77Requires PHP: 7.4
    88License: GPLv3
     
    109109== Changelog ==
    110110
     111= 1.3.1 =
     112**Release date: 18.10.2023**
     113
     114* Fix: Fixed PHP Deprecated: `Creation of dynamic property slug is deprecated`.
     115
    111116= 1.3.0 =
    112117**Release date: 26.09.2023**
  • piwik-pro/trunk/plugin.php

    r2971831 r2980689  
    55 * Plugin URI:        https://wordpress.org/plugins/piwik-pro/
    66 * Description:       Adds the Piwik PRO container (with tracking code) to your WordPress site.
    7  * Version:           1.3.0
     7 * Version:           1.3.1
    88 * Requires at least: 5.7
    99 * Requires PHP:      7.4
  • piwik-pro/trunk/vendor/clearcode/wordpress-framework/src/v6_1_3/Plugin.php

    r2971831 r2980689  
    7474            $data['slug']     = basename( dirname( $file ) );
    7575
    76             foreach( $data as $key => $value ) {
    77                 $key = strtolower( $key );
    78                 $this->$key = $value;
    79             }
     76            foreach( $data as $key => $value ) if ( property_exists( $this, $key = strtolower( $key ) ) ) $this->$key = $value;
    8077        }
    8178
Note: See TracChangeset for help on using the changeset viewer.