Skip to content

Commit

Permalink
Merge branch 'master' of ssh://repo.or.cz/srv/git/phpmyadmin/lorilee …
Browse files Browse the repository at this point in the history
…into gsoc
  • Loading branch information
teekirol committed Jul 14, 2010
2 parents 087dac0 + 27bc09c commit 8adaaf5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -95,6 +95,7 @@ $Id$
- bug [replication] Do not offer information_schema in the list of databases
- bug [js] Avoid loading twice a js file
- bug #3024344 [setup] Setup forces numeric MemoryLimit
- bug #3025975 [auth] Odd LoginCookieValidity default value

3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
Expand Down
8 changes: 4 additions & 4 deletions Documentation.html
Expand Up @@ -396,7 +396,7 @@ <h3 id="authentication_modes">Using authentication modes</h3>
In cookie mode, the password is stored, encrypted with the blowfish
algorithm, in a temporary cookie.</li>

<li id="pmausr">Note: starting with phpMyAdmin 2.6.1, this section is only applicable if
<li id="pmausr">Note: this section is only applicable if
your MySQL server is running with <tt>--skip-show-database</tt>.<br /><br />

For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
Expand Down Expand Up @@ -715,7 +715,7 @@ <h2 id="config">Configuration</h2>
<dd>This special account is used for 2 distinct purposes: to make possible
all relational features (see
<a href="#pmadb" class="configrule">$cfg['Servers'][$i]['pmadb']</a>)
and, for a MySQL server previous to 4.1.2 or running with
and, for a MySQL server running with
<tt>--skip-show-database</tt>, to enable a multi-user installation
(<abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
authentication mode).<br /><br />
Expand Down Expand Up @@ -1361,8 +1361,8 @@ <h2 id="config">Configuration</h2>
<dd>Define how long is login cookie valid. Please note that php
configuration option <a href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime">session.gc_maxlifetime</a>
might limit session validity and if session is lost, login cookie is
also invalidated. So it is good idea to set <code>session.gc_maxlifetime</code>
at least as high is $cfg['LoginCookieValidity'] is set.</dd>
also invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
not lower than the value of $cfg['LoginCookieValidity'].</dd>

<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] integer [number of seconds]</dt>
<dd>Define how long is login cookie should be stored in browser. Default 0
Expand Down
3 changes: 2 additions & 1 deletion libraries/config.default.php
Expand Up @@ -587,7 +587,8 @@
$cfg['LoginCookieRecall'] = true;

/**
* validity of cookie login (in seconds)
* validity of cookie login (in seconds; 1440 matches php.ini's
* session.gc_maxlifetime)
*
* @global integer $cfg['LoginCookieValidity']
*/
Expand Down

0 comments on commit 8adaaf5

Please sign in to comment.