Plugin Directory

Changeset 3382898

Timestamp:
10/22/2025 07:20:28 PM (9 months ago)
Author:
philsbury
Message:

Release 3.7.2

Location:
age-gate/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • age-gate/trunk/README.txt

    r3324494 r3382898  
    66Requires PHP: 7.4
    77Tested up to: 6.8
    8 Stable tag: 3.7.1
     8Stable tag: 3.7.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7777== Changelog ==
    7878
     79= 3.7.2 =
     80* Fixed - Template override with child themes
     81
    7982= 3.7.1 =
    8083* Fixed - Fatal error when storing messages with a multilingual plugin
  • age-gate/trunk/age-gate.php

    r3324494 r3382898  
    55 * Plugin URI:           https://agegate.io/
    66 * Description:          A customisable age gate to block content from younger people
    7  * Version:              3.7.1
     7 * Version:              3.7.2
    88 * Requires at least:    6.0.0
    99 * Requires PHP:         7.4
     
    2222define('AGE_GATE_PATH', plugin_dir_path(__FILE__));
    2323define('AGE_GATE_URL', plugin_dir_url(__FILE__));
    24 define('AGE_GATE_VERSION', '3.7.1');
     24define('AGE_GATE_VERSION', '3.7.2');
    2525define('AGE_GATE_SLUG', 'age-gate');
    2626
  • age-gate/trunk/src/Controller/ViewController.php

    r3320830 r3382898  
    2626    public function __construct($settings = null, $content = null)
    2727    {
    28         $theme = is_dir(get_template_directory() . '/age-gate') ? get_template_directory() . '/age-gate' : $this->empty;
     28
     29        $theme = is_dir(get_stylesheet_directory() . '/age-gate') ? get_stylesheet_directory() . '/age-gate' : $this->empty;
     30
    2931        $settings = Settings::getInstance();
    3032
  • age-gate/trunk/vendor/composer/installed.php

    r3324494 r3382898  
    22    'root' => array(
    33        'name' => 'asylum/wp-plugin-boilerplate',
    4         'pretty_version' => '3.7.1',
    5         'version' => '3.7.1.0',
    6         'reference' => '7402a1c4f6ade391f7052a42d34adc444dbef40e',
     4        'pretty_version' => '3.7.2',
     5        'version' => '3.7.2.0',
     6        'reference' => 'd2f95731e3d4a00a9dc8418882ab57466f46b102',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    7676        ),
    7777        'asylum/wp-plugin-boilerplate' => array(
    78             'pretty_version' => '3.7.1',
    79             'version' => '3.7.1.0',
    80             'reference' => '7402a1c4f6ade391f7052a42d34adc444dbef40e',
     78            'pretty_version' => '3.7.2',
     79            'version' => '3.7.2.0',
     80            'reference' => 'd2f95731e3d4a00a9dc8418882ab57466f46b102',
    8181            'type' => 'project',
    8282            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.