mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Fix #69482 session_commit and session_abort documentation return type mismatch
( By Christoph Becker ) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@336604 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2664626816
commit
3eb1b91927
2 changed files with 8 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 323403 $ -->
|
||||
<!-- $Revision$ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.session-abort">
|
||||
<refnamediv>
|
||||
<refname>session_abort</refname>
|
||||
|
@ -9,20 +9,19 @@
|
|||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>session_abort</methodname>
|
||||
<type>void</type><methodname>session_abort</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
<function>session_abort</function> finishes session without saving
|
||||
data. Thus original values in session data is kept.
|
||||
data. Thus the original values in session data are kept.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
This function returns &true; if a session was successfully reinitialized,
|
||||
otherwise &false;.
|
||||
&return.void;
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 323403 $ -->
|
||||
<!-- $Revision$ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.session-reset">
|
||||
<refnamediv>
|
||||
<refname>session_reset</refname>
|
||||
|
@ -9,12 +9,12 @@
|
|||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>session_reset</methodname>
|
||||
<type>void</type><methodname>session_reset</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
<function>session_reset</function> reinitializes a session with
|
||||
original values stored in session storage. This function requires active session and
|
||||
original values stored in session storage. This function requires an active session and
|
||||
discards changes in $_SESSION.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
@ -22,8 +22,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
This function returns &true; if a session was successfully reinitialized,
|
||||
otherwise &false;.
|
||||
&return.void;
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
Loading…
Reference in a new issue