remove trailing ?> in the end of php files

This commit is contained in:
Max Pozdeev 2022-02-07 19:16:07 +03:00
parent 05b49d30d8
commit c937596d43
10 changed files with 0 additions and 21 deletions

View file

@ -14,7 +14,6 @@ insert_final_newline = true
[*.php]
indent_style = space
indent_size = 4
insert_final_newline = false
# temporary. spaces will be used later.
[*.js]

View file

@ -950,7 +950,3 @@ function getUserListsSimple()
}
return $a;
}
?>

View file

@ -157,5 +157,3 @@ function utf8chunks($text, $chunklen=75, $delimiter="\r\n\t")
if($s != '') $a[] = $s;
return implode($delimiter, $a);
}
?>

View file

@ -140,5 +140,3 @@ function printRss($data, $listData)
header("Content-type: text/xml; charset=utf-8");
print $s;
}
?>

View file

@ -305,5 +305,3 @@ class Config
}
}
}
?>

View file

@ -184,5 +184,3 @@ class Database_Mysql extends Database_Abstract
return false;
}
}
?>

View file

@ -151,5 +151,3 @@ class Database_Mysql extends Database_Abstract
return false;
}
}
?>

View file

@ -177,5 +177,3 @@ class Database_Sqlite3 extends Database_Abstract
return false;
}
}
?>

View file

@ -172,5 +172,3 @@ function isValidSignature(string $signature, string $id, string $key, string $sa
if ( hash_equals($signature, idSignature($id, $key, $salt)) ) return true;
return false;
}
?>

View file

@ -284,5 +284,3 @@ function logAndDie($userText, $errText = null)
}
exit(1);
}
?>