We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86a0e48 commit 456008cCopy full SHA for 456008c
program/lib/Roundcube/bootstrap.php
@@ -438,7 +438,8 @@ function rcube_autoload(string $classname): bool
438
}
439
440
if (!function_exists('str_starts_with')) {
441
- function str_starts_with(string $haystack, string $needle) {
+ function str_starts_with(string $haystack, string $needle)
442
+ {
443
return strlen($needle) === 0 || strpos($haystack, $needle) === 0;
444
445
0 commit comments