History log of /PHP-5.5/main/SAPI.c (Results 26 – 50 of 302)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.3.9, php-5.4.0RC5
# e4ca0ed0 01-Jan-2012 Felipe Pena

- Year++


# 8775a375 01-Jan-2012 Felipe Pena

- Year++


# 4e198252 01-Jan-2012 Felipe Pena

- Year++


Revision tags: php-5.3.9RC4, php-5.4.0RC4, php-5.3.9RC3, php-5.4.0RC3, php-5.3.9RC2, php-5.4.0RC2
# cc742647 10-Nov-2011 Rui Hirokawa

MFH: fixed bug #60227 (header() cannot detect the multi-line header with CR(0x0D).)


Revision tags: php-5.4.0RC1
# d73b1a27 06-Nov-2011 Rui Hirokawa

fixed bug #60227: header() cannot detect the multi-line header with CR.


Revision tags: php-5.3.9RC1, php-5.4.0beta2
# bf2dfb5f 24-Sep-2011 Xinchen Hui

unused var


# 5d1ba1d1 24-Sep-2011 Xinchen Hui

unused var


# 58800b8a 23-Sep-2011 Xinchen Hui

Fixed bug #55758 (Digest Authenticate missed in 5.4)
the block I am removing should be removed along with the PG(saf_mod) condition.
since it is inside the PG(saf_mod) condition block.


# ea74b9c2 23-Sep-2011 Xinchen Hui

Fixed bug #55758 (Digest Authenticate missed in 5.4)
the block I am removing should be removed along with the PG(saf_mod) condition.
since it is inside the PG(saf_mod) condition block.


Revision tags: php-5.4.0beta1
# 4a25a774 13-Sep-2011 Dmitry Stogov

Fixed ZE specific compile warnings (Bug #55629)


# e43ff135 13-Sep-2011 Dmitry Stogov

Fixed ZE specific compile warnings (Bug #55629)


Revision tags: yaf-2.1.0, php-5.3.8, php-5.3.7, php-5.3.7RC5, php-5.4.0alpha3, php-5.3.7RC4, php-5.3.7RC3, php-5.4.0alpha2
# 50b654ab 06-Jul-2011 Hannes Magnusson

Fixed bug#55084 (Function registered by header_register_callback is
called only once per process). (Hannes)

also fixed an issue when header()s are sent from the callback function


# 5ddd67d9 06-Jul-2011 Hannes Magnusson

Fixed bug#55084 (Function registered by header_register_callback is
called only once per process). (Hannes)

also fixed an issue when header()s are sent from the callback function


Revision tags: php-5.3.7RC2
# 34d93f0c 22-Jun-2011 Ilia Alshanetsky

Zend Signal Handling


Revision tags: php-5.4.0alpha1, php-5.3.7RC1
# 93987513 02-Jun-2011 Ilia Alshanetsky

Zend Signal Handling (see RFC: https://wiki.php.net/rfc/zendsignals)
This needs to go into 5.4 as well, but will wait for Pierre to review win32 situation

# Patch by Lucas Nealan, Arnaud

Zend Signal Handling (see RFC: https://wiki.php.net/rfc/zendsignals)
This needs to go into 5.4 as well, but will wait for Pierre to review win32 situation

# Patch by Lucas Nealan, Arnaud Le Blanc, Brian Shire & Ilia Alshanetsky

show more ...


Revision tags: php-5.3.6
# 0778bedb 16-Mar-2011 Pierre Joye

- MFH: make setlocale thread only, drastically reduce TS related crashes in error mgt and other parts like pcre, and actually a good thing (tm)


# 406dd6e8 15-Mar-2011 Pierre Joye

- windows only


# 9319359d 15-Mar-2011 Pierre Joye

- make setlocale thread only, drastically reduce TS related crashes in error mgt and other parts like pcre, and actually a good thing (tm)


Revision tags: php-5.3.6RC3, php-5.3.6RC2
# 12bdec05 25-Feb-2011 Pierre Joye

- fix regression (carsten_sttgt@gmx.de)


Revision tags: php-5.3.6RC1
# c5e86e5a 03-Feb-2011 Kalle Sommer Nielsen

Fix ZTS build


# ca378eef 03-Feb-2011 Scott MacVicar

Add header_register_callback(), allows a userland function
to be called as all the headers are being sent and after all
of the default headers have been merged.

headers_list(), heade

Add header_register_callback(), allows a userland function
to be called as all the headers are being sent and after all
of the default headers have been merged.

headers_list(), header_remove() and header() can all be used
inside the callback.

<?php

header('Content-Type: text/plain');
header('X-Test: foo');

function foo() {
foreach (headers_list() as $header) {
if (strpos($header, 'X-Powered') !== false) {
header_remove('X-Powered-By');
}
header_remove('X-Test');
}
}

$result = header_register_callback('foo');
echo "a";

show more ...


Revision tags: php-5.2.17, php-5.3.5
# 927bf09c 01-Jan-2011 Felipe Pena

- Year++


# 0203cc3d 01-Jan-2011 Felipe Pena

- Year++


# dfb0e708 16-Dec-2010 Jani Taskinen

- Typos, WS, CS


Revision tags: php-5.2.16
# 6654a4ad 09-Dec-2010 Gustavo André dos Santos Lopes

- Added enable_post_data_reading ini option to allow inhibiting POST data consumption.


12345678910>>...13