Felipe Pena
feda017cce
- Fixed bug #49215 (make fails on glob_wrapper)
2010-09-10 21:33:50 +00:00
Pierre Joye
4d8d26d0db
- open_basedir symlink support for Windows
2010-09-10 17:45:13 +00:00
Adam Harvey
2441ddf10e
Fix bug #52802 (Out-of-date comment for
...
file_get_contents/php_stream_copy_to_mem) by updating the relevant comments.
2010-09-10 03:08:05 +00:00
Adam Harvey
02b2a28882
Fix bug #52786 (PHP should reset section to [PHP] after ini sections). Patch by
...
Fedora at famillecollet dot com.
2010-09-09 05:11:05 +00:00
Pierre Joye
6b72fef134
- fix the fix for bug #52323
2010-09-08 11:51:11 +00:00
Pierre Joye
123ab59b9c
- WS
2010-09-08 10:26:59 +00:00
Pierre Joye
487746cf39
- Fix bug #52323 , return value of php_network_connect_socket should be set even if the caller does not care about the error_string
2010-09-08 10:25:40 +00:00
Pierre Joye
7ce4f4955d
- fix bug #50953 , socket will not connect to IPv4 address when the host has both ipv4 and ipv6 addresses
2010-09-07 09:47:36 +00:00
Pierre Joye
ada5423308
- WS
2010-09-01 10:16:48 +00:00
Pierre Joye
dec8593fac
- add lstat support for Windows
2010-09-01 09:49:53 +00:00
Felipe Pena
1fc65cbf03
- Fixed crash on non-Windows build
2010-08-30 21:34:54 +00:00
Pierre Joye
2721bbfcf9
- fix possible leak and error while fetching PHPRC
2010-08-30 17:05:56 +00:00
Pierre Joye
100228aae1
- use TSRMLS_CC instead of TSRMLS_FETCH in virtual_file_ex
2010-08-30 09:38:47 +00:00
Dmitry Stogov
caffc1c972
Preallocate zend_hash instead of allocation/deallocation it on each request
2010-08-27 06:09:18 +00:00
Dmitry Stogov
ab6ce922e2
Use stack instead of heap
2010-08-26 12:20:35 +00:00
Kalle Sommer Nielsen
34b631f679
Pass the TSRMS pointers to sapi_module_struct.log_message, this saves some TSRMLS_FETCH() calls in a few of our SAPI's
2010-08-18 13:34:40 +00:00
Kalle Sommer Nielsen
159cd6916d
Fixed compiler warnings in main/
2010-08-17 12:49:19 +00:00
Kalle Sommer Nielsen
a448b6a72b
MFB53: Changed deprecated ini options on startup from E_WARNING to E_DEPRECATED ( Fixes #52570 )
...
# Some of the updated tests were to make them sync with 5.3 although they don't run on trunk anymore
2010-08-11 21:41:30 +00:00
Dmitry Stogov
f33d2c5fb7
Optimized defaut Content-Type HTTP header processing
2010-07-14 15:20:44 +00:00
Dmitry Stogov
f0c8366a9e
- use interned strings for auto globals
...
- $GLOBALS became a JIT autoglobal, so it's initialized only if used (this may affect opcode caches)
2010-07-08 14:05:11 +00:00
Dmitry Stogov
b4216e0a82
Use zend_stream API to open main PHP script in CGI/FastCGI. This allows to override the open function by opcode caches and eliminate the actual open syscall.
2010-07-07 16:54:55 +00:00
Antony Dovgal
9d65730961
fix minor memleak
2010-06-09 11:04:03 +00:00
Antony Dovgal
01f828ebb0
fix bug #51276 (php_load_extension() is missing when HAVE_LIBDL is undefined)
2010-06-08 12:54:11 +00:00
Michael Wallner
99da695ec9
fix cxx build
2010-06-02 12:49:12 +00:00
Michael Wallner
43154f2a7c
* raise warning if zend_fcall_info_init() cannot resolve the callback
...
* fix pointer mismatch
2010-06-01 13:16:33 +00:00
Michael Wallner
11d24c1593
* implement new output API, fixing some bugs and implementing some feature
...
requests--let's see what I can dig out of the bugtracker for NEWS--
and while crossing the road:
* implemented new zlib API
* fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?)
Thanks to Jani and Felipe for pioneering.
2010-05-31 10:29:43 +00:00
Antony Dovgal
8d64074951
use correct condition in the if
2010-05-25 19:19:45 +00:00
Dmitry Stogov
f7ce69585c
- Interned string related callbacks moved turned from compiler_globals into real globals
...
- Updated API version number
2010-05-25 09:00:20 +00:00
Pierre Joye
3a19fee38b
- #51854 , fix logic (patch by Tjerk)
2010-05-18 19:39:39 +00:00
Antony Dovgal
cc4a178345
add the constant back. quite a lot of code uses it.
2010-04-28 10:36:33 +00:00
Kalle Sommer Nielsen
dd8e59da8f
Removed safe_mode
...
* Removed ini options, safe_mode*
* Removed --enable-safe-mode --with-exec-dir configure options on Unix
* Updated extensions, SAPI's and core
* php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore
2010-04-26 23:53:30 +00:00
Felipe Pena
0a6bcd44a7
- Removed allow_call_time_pass_reference (Pierrick)
2010-04-26 00:13:34 +00:00
David Soria Parra
08b9fdc8a3
Add DTrace probes
2010-04-24 13:32:30 +00:00
Felipe Pena
10e7361027
- Fixed bug #51627 (script path not correctly evaluated)
...
Patch by: russell dot tempero at rightnow dot com
2010-04-21 22:22:31 +00:00
Kalle Sommer Nielsen
9a38f301d6
Remove highlight.bg, it was removed in the old trunk and its not referenced in zend_highlight.c, meaning its not even implemented correctly in 5.3.
2010-04-21 21:56:24 +00:00
Kalle Sommer Nielsen
febee11285
Removed register_globals
2010-04-21 01:27:22 +00:00
Dmitry Stogov
41b6410418
Added concept of interned strings. All strings constants known at compile time are allocated in a single copy and never changed.
2010-04-20 11:07:05 +00:00
Dmitry Stogov
94dd83722b
Changed the structure of op_array.opcodes. The constant values are moved from opcode operands into a separate literal table
2010-04-20 10:57:45 +00:00
Kalle Sommer Nielsen
a5304b138f
Removed register_long_arrays ini option (and $HTTP_SESSION_VARS from ext/session)
2010-04-15 16:36:08 +00:00
Antony Dovgal
76b60a3412
final fix for long opts in getopt()
2010-04-15 11:50:43 +00:00
Kalle Sommer Nielsen
0cee5edcfb
Bump PHP_API_VERSION
2010-04-15 11:18:28 +00:00
Antony Dovgal
29aff0a595
discard first TWO symbols of a long argument
2010-04-14 15:49:38 +00:00
Kalle Sommer Nielsen
6169d91ba7
* Pass TSRMLS_C around pageinfo.c
...
* Use zend_parse_parameters_none() in pageinfo.c
2010-04-13 11:41:40 +00:00
Kalle Sommer Nielsen
ec5ece6caf
PHP_OS is now always WINNT on Windows, since we don't support anything prior to XP SP2
2010-04-13 11:14:04 +00:00
Kalle Sommer Nielsen
7ef4cdf471
Remove a couple TSRMLS_FETCH() calls around ext/main/sapi
2010-04-13 11:02:15 +00:00
Kalle Sommer Nielsen
4e7b11ccce
Removed y2k_compliance ini option, making it "always" enabled internally
...
- The only reference to y2k_compliance was in php_std_date(). Browsers thats not compatable have a marketshare of 0.01% if they even are in use today
2010-04-12 07:34:30 +00:00
Kalle Sommer Nielsen
8087be61d0
* Changed the way removed ini directives are shown so its easier to add new ones
...
* Removed define_syslog_variables and its associated functions
2010-04-12 01:52:55 +00:00
Antony Dovgal
14d1095a5c
make sure the actual length of the argument passed matches the
...
length of the argument declared
this fixes things like `php --zend-exten=1` or `php-fpm --fpm-con=conf`
2010-04-08 15:27:21 +00:00
Pierre Joye
c264445a37
- WS
2010-04-08 07:55:35 +00:00
Johannes Schlüter
26b08f9857
Remove main/php3_compat.h, for that a few references to function_entry have
...
to be replaced by `zend_function_entry`.
2010-03-30 23:03:02 +00:00