MDL-81897 tool_mobile: Coding style fix

This commit is contained in:
Andrew Nicols 2024-05-28 11:40:25 +08:00
parent 587d737690
commit 5425fb3d79
No known key found for this signature in database
GPG Key ID: 6D1E3157C8CFBF14

View File

@ -71,7 +71,10 @@ if (empty($service)) {
// If the user is using the inapp (embedded) browser, we need to set the Secure and Partitioned attributes to the session cookie.
if (\core_useragent::is_moodle_app()) {
\core\session\utility\cookie_helper::add_attributes_to_cookie_response_header('MoodleSession'.$CFG->sessioncookie, ['Secure', 'Partitioned']);
\core\session\utility\cookie_helper::add_attributes_to_cookie_response_header(
"MoodleSession{$CFG->sessioncookie}",
['Secure', 'Partitioned'],
);
}
require_login(0, false);