Changeset 2952523
- Timestamp:
- 08/12/2023 05:45:43 AM (3 years ago)
- Location:
- whatshelp-chat-button
- Files:
-
- 4 edited
- 1 copied
-
tags/1.8.12 (copied) (copied from whatshelp-chat-button/trunk)
-
tags/1.8.12/readme.txt (modified) (2 diffs)
-
tags/1.8.12/whatshelp.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/whatshelp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
whatshelp-chat-button/tags/1.8.12/readme.txt
r2946565 r2952523 5 5 Requires at least: 2.7 6 6 Tested up to: 6.3 7 Stable tag: 1.8.1 17 Stable tag: 1.8.12 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 82 82 == Changelog == 83 83 84 = 1.8.12 = 85 Improve stability. 86 84 87 = 1.8.11 = 85 88 Improve stability. -
whatshelp-chat-button/tags/1.8.12/whatshelp.php
r2946539 r2952523 72 72 preg_match_all('/(?:var|let|const)[\s]+[a-zA-Z0-9_]+[\s]*=/', $code_clean, $allVarsPos, PREG_OFFSET_CAPTURE); 73 73 $allVarsPos = $allVarsPos[0]; 74 if (!count($allVarsPos [0])) {74 if (!count($allVarsPos) || !count($allVarsPos[0])) { 75 75 throw new \Exception(); 76 76 } -
whatshelp-chat-button/trunk/readme.txt
r2946565 r2952523 5 5 Requires at least: 2.7 6 6 Tested up to: 6.3 7 Stable tag: 1.8.1 17 Stable tag: 1.8.12 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 82 82 == Changelog == 83 83 84 = 1.8.12 = 85 Improve stability. 86 84 87 = 1.8.11 = 85 88 Improve stability. -
whatshelp-chat-button/trunk/whatshelp.php
r2946539 r2952523 72 72 preg_match_all('/(?:var|let|const)[\s]+[a-zA-Z0-9_]+[\s]*=/', $code_clean, $allVarsPos, PREG_OFFSET_CAPTURE); 73 73 $allVarsPos = $allVarsPos[0]; 74 if (!count($allVarsPos [0])) {74 if (!count($allVarsPos) || !count($allVarsPos[0])) { 75 75 throw new \Exception(); 76 76 }
Note: See TracChangeset
for help on using the changeset viewer.