Small fixes to improve memory performance, temporary code deletion and small typo in img file location.
All checks were successful
Website Sync / website-sync (push) Successful in 4s

This commit is contained in:
2026-03-16 17:10:25 -03:00
parent eeefee56ac
commit 775641dc36
4 changed files with 12 additions and 3 deletions

View File

@@ -52,8 +52,6 @@ function transingSplit(string $array) {
$array = substr($array,0,-1);
}
$temp = strpos($array,'/',1);
if (strpos($array,'/',1) > 1 or strpos($array,'/',1) == FALSE) {
$commented=FALSE;
} else {
@@ -88,6 +86,7 @@ function transingSplit(string $array) {
$i++;
}
unset($array, $commented, $start_pos, $end_pos, $item_len);
return $return_array;
}