1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
Commit Graph

59077 Commits

Author SHA1 Message Date
Andrey Hristov 6f0adc06fa more WS 2010-04-15 15:16:29 +00:00
Andrey Hristov a9880e78c6 CS + WS changes 2010-04-15 12:55:04 +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
Andrey Hristov c04f752625 Fix for bug#49234 method not found ssl_set
Patch was tested and compiles on Windows. (Thanks Kalle)
2010-04-15 11:01:30 +00:00
Antony Dovgal 29aff0a595 discard first TWO symbols of a long argument 2010-04-14 15:49:38 +00:00
Pierre Joye 623818f416 - #35638, add udate to imap_fetch_overview 2010-04-14 09:45:37 +00:00
Antony Dovgal be23f26ca9 simplify configure check for nanosleep() 2010-04-13 12:41:46 +00:00
Antony Dovgal b299e90b79 use new type + const static 2010-04-13 12:16:26 +00:00
Antony Dovgal d77d6153ec re-add updated FPM 2010-04-13 12:13:46 +00:00
Antony Dovgal 3ebdadf8f6 prepare to re-add newer FPM version 2010-04-13 12:13:24 +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
Ilia Alshanetsky 1b8b6d931a MFB: Fixed bug #51512 (mb_send_mail* fail when mail.add_x_header is on by default) 2010-04-12 14:05:00 +00:00
Antony Dovgal 06b9943842 add FPM sapi to trunk 2010-04-12 11:22:24 +00:00
Pierre Joye 4290928fb3 - fix inline doc 2010-04-12 08:40:59 +00:00
Pierre Joye 95fcd75af2 - [doc] add stream_set_read_buffer, equivalent of stream_set_write_buffer for read operations. Fixing possible bad effects while reading devices. full context support is under work. 2010-04-12 08:25:50 +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 ecd006350a NEWS entry for the define_syslog_variables commit 2010-04-12 07:01:46 +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
Derick Rethans 4da75af2f8 - Expose date-extension object creation externally.
- Expose DateTime object initialisation externally.
2010-04-10 20:33:41 +00:00
Rob Richards 6f95046109 fix bug #50828 (DOMNotation is not subclass of DOMNode) 2010-04-09 11:34:34 +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
Andrey Hristov c0531d8db0 Fixint INT_AND_FLOAT_AS native. It was working ok on 64bit but
because on 32bit SIZEOF_LONG is 4 and INT64 from MySQL is 8 everything
was converted to string, even if it was able to put it in a long.
This closes Request #50651 Native type cast returns wrong result
2010-04-08 13:20:37 +00:00
Andrey Hristov 4b2111d178 Fixing the second test 2010-04-08 13:18:52 +00:00
Andrey Hristov 4e441ef30b one more fix and both work with libmysql and mysqlnd 2010-04-08 10:53:38 +00:00
Andrey Hristov 8467978d7a Fix for bug #51026 ssl not working 2010-04-08 09:01:21 +00:00
Pierre Joye c264445a37 - WS 2010-04-08 07:55:35 +00:00
Pierre Joye 2137c3a036 - WS 2010-04-08 07:50:05 +00:00
Andrey Hristov 840d2dc8a7 Another fix for the 16 chars user limitation of MySQL 2010-04-07 18:28:46 +00:00
Andrey Hristov dfbe6cb392 Fix test. The usernames in the server are 16 chars long 2010-04-07 18:05:42 +00:00
Andrey Hristov 92698a331f Fix the Windows build (void* arithmetic) as well as --disable-zlib
build.
2010-04-06 18:14:23 +00:00
Andrey Hristov 3cb852fe6b Stricly C 2010-04-06 14:33:55 +00:00
Antony Dovgal adaf07849d fix typo 2010-04-06 13:42:21 +00:00
Andrey Hristov b8484a2e89 Recommit with an Windows build fix:
Fix inconsistencies
- memory allocated with spprintf, or likes, outside of mysqlnd's
allocator functions should not be freed by the mysqlnd's allocator
(a wrapper around emalloc/malloc).
- memory allocated by the mysqlnd's allocator should only be freed
  by it.
- add a mode to track memory usage (malloc/free)
2010-04-06 13:28:23 +00:00
Stanislav Malyshev 5f6a39d531 change namespaced ctors - only __construct would work 2010-04-04 23:28:20 +00:00
Felipe Pena f3d312ce87 - Fix tests 2010-04-04 17:21:27 +00:00
Felipe Pena 7561171eca - Fix test 2010-04-04 16:59:20 +00:00
Felipe Pena a90c801c2f - Fixed tests 2010-04-03 15:42:42 +00:00
Felipe Pena fa76263481 - Fixed bug #51445 (var_dump() invalid/slow *RECURSION* detection) 2010-04-02 21:44:09 +00:00
Rob Richards 01d9389c2c fix bug #48983 (DomDocument : saveHTMLFile wrong charset) 2010-04-02 20:08:15 +00:00
Rasmus Lerdorf 42bc0de99a Fix tests 2010-04-02 18:27:48 +00:00
Rasmus Lerdorf fcbb8e96f4 Update the FILTER_VALIDATE_EMAIL filter to fix bug #49576 2010-04-02 17:56:37 +00:00
Rob Richards 6feb1edcb6 re-apply bug fix #35673 (formatOutput does not work with saveHTML) from old trunk
add test
BFN
2010-04-02 16:15:06 +00:00
Stanislav Malyshev de363cf818 fix #49192 - crash in GC when get_properties handler returns null 2010-04-01 22:54:03 +00:00
Stanislav Malyshev cf4ea31bff fix #51394 - try harder to find script lineno when exception happens 2010-04-01 19:36:56 +00:00
Rasmus Lerdorf 49b8860ace Add new full_special_chars filter to tests 2010-04-01 18:04:57 +00:00
Andrey Hristov d339672e45 Fix inconsistencies
- memory allocated with spprintf, or likes, outside of mysqlnd's
allocator functions should not be freed by the mysqlnd's allocator
(a wrapper around emalloc/malloc).
- memory allocated by the mysqlnd's allocator should only be freed
  by it.
- add a mode to track memory usage (malloc/free)
2010-04-01 13:26:41 +00:00
Andrey Hristov ffb8df30ab Better fix for bug #51347 mysqli_close / connection memory leak 2010-04-01 12:46:21 +00:00