Plugin Directory

Changeset 2952523


Ignore:
Timestamp:
08/12/2023 05:45:43 AM (3 years ago)
Author:
whatshelp
Message:

tagging version 1.8.12

Location:
whatshelp-chat-button
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • whatshelp-chat-button/tags/1.8.12/readme.txt

    r2946565 r2952523  
    55Requires at least: 2.7
    66Tested up to: 6.3
    7 Stable tag: 1.8.11
     7Stable tag: 1.8.12
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8282== Changelog ==
    8383
     84= 1.8.12 =
     85Improve stability.
     86
    8487= 1.8.11 =
    8588Improve stability.
  • whatshelp-chat-button/tags/1.8.12/whatshelp.php

    r2946539 r2952523  
    7272    preg_match_all('/(?:var|let|const)[\s]+[a-zA-Z0-9_]+[\s]*=/', $code_clean, $allVarsPos, PREG_OFFSET_CAPTURE);
    7373    $allVarsPos = $allVarsPos[0];
    74     if (!count($allVarsPos[0])) {
     74    if (!count($allVarsPos) || !count($allVarsPos[0])) {
    7575        throw new \Exception();
    7676    }
  • whatshelp-chat-button/trunk/readme.txt

    r2946565 r2952523  
    55Requires at least: 2.7
    66Tested up to: 6.3
    7 Stable tag: 1.8.11
     7Stable tag: 1.8.12
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8282== Changelog ==
    8383
     84= 1.8.12 =
     85Improve stability.
     86
    8487= 1.8.11 =
    8588Improve stability.
  • whatshelp-chat-button/trunk/whatshelp.php

    r2946539 r2952523  
    7272    preg_match_all('/(?:var|let|const)[\s]+[a-zA-Z0-9_]+[\s]*=/', $code_clean, $allVarsPos, PREG_OFFSET_CAPTURE);
    7373    $allVarsPos = $allVarsPos[0];
    74     if (!count($allVarsPos[0])) {
     74    if (!count($allVarsPos) || !count($allVarsPos[0])) {
    7575        throw new \Exception();
    7676    }
Note: See TracChangeset for help on using the changeset viewer.