Do not close modals when clicking on the background

Fixes #5288
This commit is contained in:
Frédéric Guillot
2023-10-15 13:49:03 -07:00
committed by Frédéric Guillot
parent 0adc73d583
commit b212dd1c7d
4 changed files with 12 additions and 12 deletions

View File

@@ -124,7 +124,7 @@ class JS extends Minify
*/
public function __construct()
{
call_user_func_array(array('parent', '__construct'), func_get_args());
call_user_func_array(array(parent::class, '__construct'), func_get_args());
$dataDir = __DIR__.'/../data/js/';
$options = FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES;