Some of the php files have an ending ?>.
This is unnecessary, goes against all conventions, and it can have an unpleasant side effect if the ?> is followed by a line break or any kind of whitespace. In that case it can cause the legendary "headers already sent".
So let's remove it.
This will be a simple PR.
Some of the php files have an ending
?>.This is unnecessary, goes against all conventions, and it can have an unpleasant side effect if the
?>is followed by a line break or any kind of whitespace. In that case it can cause the legendary "headers already sent".So let's remove it.
This will be a simple PR.