Code cleanup, no functional changes

This commit is contained in:
2023-06-27 19:39:11 +12:00
parent b70a36003a
commit ad36da0bb1
64 changed files with 466 additions and 438 deletions

View File

@@ -54,7 +54,7 @@ abstract class Process
// Look for a space
$space = strrpos($subtext,' ');
if ($space == FALSE)
if ($space === FALSE)
$space = strlen($subtext);
else
$subtext = substr($text,$offset,$space);