Merge branch 'release/1.7.42.3'

This commit is contained in:
Andy Miller 2023-07-18 12:41:08 -06:00
commit fb5dd14875
No known key found for this signature in database
GPG Key ID: 9F2CF38AEBDB0AE0
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# v1.7.42.3
## 07/18/2023
2. [](#improved)
* Fixed a typo in `Utils::isDangerousFunction`
# v1.7.42.2
## 07/18/2023

View File

@ -9,7 +9,7 @@
// Some standard defines
define('GRAV', true);
define('GRAV_VERSION', '1.7.42.2');
define('GRAV_VERSION', '1.7.42.3');
define('GRAV_SCHEMA', '1.7.0_2020-11-20_1');
define('GRAV_TESTING', false);

View File

@ -2065,7 +2065,7 @@ abstract class Utils
}
if (is_array($name) || strpos($name, ":") !== false) {
return false;
return true;
}
if (strpos($name, "\\") !== false) {