<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/session, branch master</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Merge branch 'PHP-8.0'</title>
<updated>2021-03-23T12:14:49+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-23T12:14:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=f4412f56a2bc28cb1be36db03dc90b829aa7209b'/>
<id>f4412f56a2bc28cb1be36db03dc90b829aa7209b</id>
<content type='text'>
* PHP-8.0:
  Properly initialize PS(mod) on RINIT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-8.0:
  Properly initialize PS(mod) on RINIT
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.4' into PHP-8.0</title>
<updated>2021-03-23T12:13:43+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-23T12:13:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=733b5143261ec5d54647632dc3493f37608c206d'/>
<id>733b5143261ec5d54647632dc3493f37608c206d</id>
<content type='text'>
* PHP-7.4:
  Properly initialize PS(mod) on RINIT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.4:
  Properly initialize PS(mod) on RINIT
</pre>
</div>
</content>
</entry>
<entry>
<title>Properly initialize PS(mod) on RINIT</title>
<updated>2021-03-23T12:12:19+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-22T12:21:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=688e56d0ac6446dcdac2621c26586eb2de92f9b0'/>
<id>688e56d0ac6446dcdac2621c26586eb2de92f9b0</id>
<content type='text'>
We need to do that in case a user handler has been set.  However, we
can't do that in `php_rinit_session_globals()` since that function is
called by PHP function `session_destroy()` too, but in that case we
don't want to reset PS(mod).

Closes GH-6795.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to do that in case a user handler has been set.  However, we
can't do that in `php_rinit_session_globals()` since that function is
called by PHP function `session_destroy()` too, but in that case we
don't want to reset PS(mod).

Closes GH-6795.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-8.0'</title>
<updated>2021-03-22T21:51:12+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-22T21:51:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fd6291773012aedcf5566ba93a522024ccd56845'/>
<id>fd6291773012aedcf5566ba93a522024ccd56845</id>
<content type='text'>
* PHP-8.0:
  Fix #80889: amendment
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-8.0:
  Fix #80889: amendment
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.4' into PHP-8.0</title>
<updated>2021-03-22T21:49:46+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-22T21:49:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=90be86fc91338bb34b5099bba233acf363f6a8bf'/>
<id>90be86fc91338bb34b5099bba233acf363f6a8bf</id>
<content type='text'>
* PHP-7.4:
  Fix #80889: amendment
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.4:
  Fix #80889: amendment
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #80889: amendment</title>
<updated>2021-03-22T21:17:35+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-22T21:14:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=838951c2d6612efbf6adeb5b1abc7fced808dc39'/>
<id>838951c2d6612efbf6adeb5b1abc7fced808dc39</id>
<content type='text'>
`session_set_save_handler()` may be called with callables instead of an
object; we need to cater to that as well.

We also extract a set_user_save_handler_ini() function to avoid code
duplication.

Closes GH-6796.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`session_set_save_handler()` may be called with callables instead of an
object; we need to cater to that as well.

We also extract a set_user_save_handler_ini() function to avoid code
duplication.

Closes GH-6796.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-8.0'</title>
<updated>2021-03-19T16:05:32+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-19T16:05:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=64e589cab6fcc953f111d6da2a4c137f6f97d5f3'/>
<id>64e589cab6fcc953f111d6da2a4c137f6f97d5f3</id>
<content type='text'>
* PHP-8.0:
  Fix #80889: Cannot set save handler when save_handler is invalid
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-8.0:
  Fix #80889: Cannot set save handler when save_handler is invalid
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.4' into PHP-8.0</title>
<updated>2021-03-19T16:03:54+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-19T16:03:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=2a1ed81ffcd50d493cfbabe2a155328081c6e6c8'/>
<id>2a1ed81ffcd50d493cfbabe2a155328081c6e6c8</id>
<content type='text'>
* PHP-7.4:
  Fix #80889: Cannot set save handler when save_handler is invalid
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.4:
  Fix #80889: Cannot set save handler when save_handler is invalid
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #80889: Cannot set save handler when save_handler is invalid</title>
<updated>2021-03-19T15:59:54+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-03-19T13:47:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=06bfada99bcff9bd2e3a5e959effa2237c07939b'/>
<id>06bfada99bcff9bd2e3a5e959effa2237c07939b</id>
<content type='text'>
There is no need to require a (valid) save_handler to be set, when a
user handler is supposed to be set.  We just have to make sure, that
no user handler is already set in this case.

Closes GH-6788.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is no need to require a (valid) save_handler to be set, when a
user handler is supposed to be set.  We just have to make sure, that
no user handler is already set in this case.

Closes GH-6788.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-8.0'</title>
<updated>2021-02-22T11:36:43+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2021-02-22T11:36:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=59d030c55b6515e448d324bf0f97189aefc554bc'/>
<id>59d030c55b6515e448d324bf0f97189aefc554bc</id>
<content type='text'>
* PHP-8.0:
  Fix #80774: session_name() problem with backslash
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-8.0:
  Fix #80774: session_name() problem with backslash
</pre>
</div>
</content>
</entry>
</feed>
