ericferon / glpi-archisw

GLPI plugin for application inventory
GNU General Public License v2.0
8 stars 5 forks source link

Issues related to whitespaces #58

Closed cedric-anne closed 1 year ago

cedric-anne commented 1 year ago

Hi,

There is 2 files of your plugin that contains a whitespace after the ending ?>. It may lead to issues like

PHP Warning:  ini_set(): Headers already sent. You cannot change the session module's ini settings at this time in ...
PHP Warning:  session_name(): Cannot change session name when headers already sent in ...

These files are :

Solution could be to remove whitespace chars, but the best alternative would probably to remove ending ?> on all plugin pure PHP files, as required by PSR-12:

The closing ?> tag MUST be omitted from files containing only PHP.