Plugin Directory

Changeset 2762378


Ignore:
Timestamp:
07/27/2022 12:06:29 PM (4 years ago)
Author:
ampenhancer
Message:

1.0.47 is pushed

Location:
amp-enhancer/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • amp-enhancer/trunk/amp-enhancer.php

    r2557002 r2762378  
    44Description: AMP Enhancer is a Compatibility Layer for Official AMP Plugin ( Its Plug & Play, Requires No Settings )
    55Author: ampenhancer
    6 Version: 1.0.46
     6Version: 1.0.47
    77Author URI: http://ampenhancer.com
    88License: GPLv2 or later
     
    1313if ( ! defined( 'ABSPATH' ) ) exit;
    1414
    15 define('AMP_ENHANCER_VERSION','1.0.46');
     15define('AMP_ENHANCER_VERSION','1.0.47');
    1616define('AMP_ENHANCER_PLUGIN_URI', plugin_dir_url(__FILE__));
    1717define('AMP_ENHANCER_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • amp-enhancer/trunk/class-amp-enhancer-form-sanitizer.php

    r2496658 r2762378  
    1010use AmpProject\DevMode;
    1111use AmpProject\Dom\Document;
    12 
     12use AmpProject\Dom\Document\Filter\MustacheScriptTemplates;
    1313/**
    1414 * Class AMP_Form_Sanitizer
     
    220220            }
    221221
    222         $templates = $this->dom->xpath->query( Document::XPATH_MUSTACHE_TEMPLATE_ELEMENTS_QUERY, $form );
     222        $templates = $this->dom->xpath->query( MustacheScriptTemplates::XPATH_MUSTACHE_TEMPLATE_ELEMENTS_QUERY, $form );
    223223        foreach ( $templates as $template ) {
    224224            $parent = $template->parentNode;
  • amp-enhancer/trunk/readme.txt

    r2557002 r2762378  
    44Donate link: https://www.paypal.me/Kaludi/25
    55Requires at least: 3.0
    6 Tested up to: 5.7.2
    7 Stable tag: 1.0.46
     6Tested up to: 6.0.1
     7Stable tag: 1.0.47
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    223223== Changelog ==
    224224
     225= 1.0.47 (22nd July 2022) =
     226* Fixed: Fatal Error with WooCommerce #72
     227* Fixed: Drop Down menus are not working with Storefront #71
     228
    225229= 1.0.46 (1st July 2021) =
    226230* Added Ezoic Compatibility #64
Note: See TracChangeset for help on using the changeset viewer.