8000 corrections · symfony/symfony-docs@13a3c66 · GitHub
[go: up one dir, main page]

Skip to content

Commit 13a3c66

Browse files
author
Drak
committed
corrections
1 parent ce2aeb2 commit 13a3c66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cookbook/session/sessions_directory.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.. index::
22
single: Sessions, sessions directory
33

4-
Configuring the Directory where Sessions Files are Saved
4+
Configuring the Directory Where Sessions Files are Saved
55
========================================================
66

77
By default, Symfony stores the session data in files in the cache
8-
directory `"%kernel.cach_dir%/sessions"`. This means that when you clear
8+
directory ``%kernel.cach_dir%/sessions``. This means that when you clear
99
the cache, any current sessions will also be deleted.
1010

1111
.. note::
@@ -60,8 +60,8 @@ session directory to ``app/sessions``:
6060
// app/config/config.php
6161
$container->loadFromExtension('framework', array(
6262
'session' => array(
63-
'handler-id' => "session.handler.native_file"),
64-
'save-path' => "%kernel.root_dir%/sessions"),
63+
'handler-id' => 'session.handler.native_file',
64+
'save-path' => '%kernel.root_dir%/sessions',
6565
),
6666
));
6767

0 commit comments

Comments
 (0)
0