Add check for empty input to change_collation
commit946012f9c8fcbc857e1ddba3459aca5ab618df5f
authorSi Jie <sijie123@gmail.com>
Sat, 16 Mar 2019 07:12:35 +0000 (16 14:12 +0700)
committerWilliam Desportes <williamdes@wdes.fr>
Tue, 28 May 2019 11:44:40 +0000 (28 13:44 +0200)
treebb54e22741b254c0b11bd14d6e0c1e6cc0b779f9
parentd198598b93e30f17f051e25988b9a0fba8f56e27
Add check for empty input to change_collation

Currently, if an empty input is provided to change_collation, the behaviour is as if no user input were made.
This causes a bug in db_operations.php, where a blank form will be returned to the user instead of an error message.

By checking for empty($_REQUEST['db_collation']) separately, we can catch bad user input and return the appropriate error message.

Signed-off-by: Si Jie <sijie123@gmail.com>
libraries/db_common.inc.php