diff options
| author | wn_ <invalid@email.com> | 2024-11-23 18:23:49 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2024-11-24 13:59:29 +0000 |
| commit | 667528d5b927f0f284a067b0e24c9ca7f26c28a4 (patch) | |
| tree | f28c7ece3584a7852b6562020246b1de6167774e /update.php | |
| parent | 53fee911e6a39a5c8504d03d1f114a131d00784c (diff) | |
Use PHP 8 'str_' functions.
A few more characters in some places, but helps with readability.
Diffstat (limited to 'update.php')
| -rwxr-xr-x | update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php index c7f274419..d2a1287d1 100755 --- a/update.php +++ b/update.php @@ -123,7 +123,7 @@ $options_help = []; foreach ($options_map as $option => $descr) { - if (substr($option, -1) === ":") + if (str_ends_with($option, ':')) $option = substr($option, 0, -1); $help_key = trim(sprintf("--%s %s", |