Plugin Directory

Changeset 3257687


Ignore:
Timestamp:
03/18/2025 10:00:40 AM (13 months ago)
Author:
integromat
Message:

v1.5.10 fix compatibility issue with PHP 7

Location:
integromat-connector
Files:
34 added
2 edited

Legend:

Unmodified
Added
Removed
  • integromat-connector/trunk/index.php

    r3253323 r3257687  
    33/**
    44 * @package Integromat_Connector
    5  * @version 1.5.9
     5 * @version 1.5.10
    66 */
    77
     
    1111Author: Celonis s.r.o.
    1212Author URI: https://www.make.com/en?utm_source=wordpress&utm_medium=partner&utm_campaign=wordpress-partner-make
    13 Version: 1.5.9
     13Version: 1.5.10
    1414*/
    1515
     
    4040    function ($hook) {
    4141        // Only enqueue scripts for Make plugin
    42         if (!str_contains($hook, 'integromat')) {
     42        $pos = strpos($hook, 'integromat');
     43        if ($pos === false) {
    4344            return;
    4445        }
  • integromat-connector/trunk/readme.txt

    r3253323 r3257687  
    55Tested up to:  6.7.2
    66Requires PHP: 7.2
    7 Stable tag: 1.5.9
     7Stable tag: 1.5.10
    88License: GPLv2 or later
    99
     
    4545
    4646== Changelog ==
     47= 1.5.10 =
     48* Fix a bug introduced in previous fix regarding PHP 7 compatibility
     49
    4750= 1.5.9 =
    4851* Improve compatibility with other plugins
Note: See TracChangeset for help on using the changeset viewer.