Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children | 1fec387a4317 |
comparison
equal
deleted
inserted
replaced
11:bfffd8d7479a | 12:7a779792577d |
---|---|
89 * upload_progress.prefix, "upload_progress_" | 89 * upload_progress.prefix, "upload_progress_" |
90 * upload_progress.name, "PHP_SESSION_UPLOAD_PROGRESS" | 90 * upload_progress.name, "PHP_SESSION_UPLOAD_PROGRESS" |
91 * upload_progress.freq, "1%" | 91 * upload_progress.freq, "1%" |
92 * upload_progress.min-freq, "1" | 92 * upload_progress.min-freq, "1" |
93 * url_rewriter.tags, "a=href,area=href,frame=src,form=,fieldset=" | 93 * url_rewriter.tags, "a=href,area=href,frame=src,form=,fieldset=" |
94 * sid_length, "32" | |
95 * sid_bits_per_character, "5" | |
96 * trans_sid_hosts, $_SERVER['HTTP_HOST'] | |
97 * trans_sid_tags, "a=href,area=href,frame=src,form=" | |
94 * | 98 * |
95 * @param array $options Session configuration options | 99 * @param array $options Session configuration options |
96 * @param AbstractProxy|NativeSessionHandler|\SessionHandlerInterface|null $handler | 100 * @param AbstractProxy|NativeSessionHandler|\SessionHandlerInterface|null $handler |
97 * @param MetadataBag $metaBag MetadataBag | 101 * @param MetadataBag $metaBag MetadataBag |
98 */ | 102 */ |
314 'hash_function', 'name', 'referer_check', | 318 'hash_function', 'name', 'referer_check', |
315 'serialize_handler', 'use_strict_mode', 'use_cookies', | 319 'serialize_handler', 'use_strict_mode', 'use_cookies', |
316 'use_only_cookies', 'use_trans_sid', 'upload_progress.enabled', | 320 'use_only_cookies', 'use_trans_sid', 'upload_progress.enabled', |
317 'upload_progress.cleanup', 'upload_progress.prefix', 'upload_progress.name', | 321 'upload_progress.cleanup', 'upload_progress.prefix', 'upload_progress.name', |
318 'upload_progress.freq', 'upload_progress.min-freq', 'url_rewriter.tags', | 322 'upload_progress.freq', 'upload_progress.min-freq', 'url_rewriter.tags', |
323 'sid_length', 'sid_bits_per_character', 'trans_sid_hosts', 'trans_sid_tags', | |
319 )); | 324 )); |
320 | 325 |
321 foreach ($options as $key => $value) { | 326 foreach ($options as $key => $value) { |
322 if (isset($validOptions[$key])) { | 327 if (isset($validOptions[$key])) { |
323 ini_set('session.'.$key, $value); | 328 ini_set('session.'.$key, $value); |