summaryrefslogtreecommitdiff
path: root/Zend
Commit message (Collapse)AuthorAgeFilesLines
* - MF52: calloc must actually clear the requested size (Andrei)Pierre Joye2009-06-281-1/+1
|
* Bump version to 5.3.0 and API Nos. upJohannes Schlüter2009-06-262-2/+2
|
* Make the check case sensitive, and since we can only have a constructor that ↵Scott MacVicar2009-06-192-2/+26
| | | | | | | | | | matches the class name or is __construct its probably safe to just check for __. This means we can skip lowering the function_name, which is hard to be binary safe sine we don't store the length. If we just did a zend_hash_exists lookup we'd be fine since its stored lowercased already :)
* Fix bug #48215 - Calling a method with the same name as the parent class ↵Scott MacVicar2009-06-182-1/+41
| | | | calls the constructor instead.
* Need the gcc version check here tooRasmus Lerdorf2009-06-171-1/+1
|
* Tweak to make this compile with gcc2Rasmus Lerdorf2009-06-161-1/+1
|
* - MFH: Fixed build (removed trailing comma) patch by Seiji Masugata ↵Felipe Pena2009-06-161-1/+1
| | | | <s.masugata at digicom.dnp.co.jp>
* Basic tests for function_exists() and get_defined_functions(). Tested on ↵andy wharmby2009-06-145-0/+302
| | | | Windows, Linux and Linux 64 bit.
* - Constified method_name arg. in zend_get_user_call_function() and ↵Felipe Pena2009-06-121-2/+2
| | | | zend_get_user_callstatic_function()
* MFH: Fixed bug #48533 (__callStatic is not invoked for private/protected ↵Felipe Pena2009-06-122-36/+76
| | | | methods)
* - fix build (void alarm)Pierre Joye2009-06-091-5/+5
|
* - typoPierre Joye2009-06-081-1/+1
|
* Fixed bug #44827 (define() is missing error checks for class constants)Ilia Alshanetsky2009-06-081-0/+29
|
* MFH: Fixed bug #47836 (array operator [] inconsistency when the array has ↵Matt Wilmas2009-06-072-2/+18
| | | | | | | PHP_INT_MAX index value) Also simplified related array_push() test
* MFH: Changed error messages to use "cannot" instead of "can not" (meaning ↵Matt Wilmas2009-06-0711-36/+36
| | | | "also can")
* MFH: Make pass_two visible to extensions with ZEND_API (required for optimizer).Brian Shire2009-06-052-2/+2
|
* There is no always_inline attribute in gcc2Rasmus Lerdorf2009-06-051-0/+5
|
* MFH: Added zend_eval_stringl and made create_function(), etc. binary-safeMatt Wilmas2009-06-053-12/+44
|
* MFH: better fix for #48409 , #48428 , #48228Arnaud Le Blanc2009-06-055-12/+27
|
* MFH: Updated tests after double->long conversion change (basically to match 5.2)Matt Wilmas2009-06-043-10/+10
| | | | | # Let me know about other failing tests I missed
* MFH:Matt Wilmas2009-06-049-235/+149
| | | | | | | | | | | | | | | | | | Restored double->long conversion behavior to that of PHP 5.2 (on most platforms) and prior: * Out-of-range numbers overflow/preserve least significant bits (no LONG_MAX/MIN limit) * See bug #42868 (presumably-rare platform with different results in 5.2) * On 32-bit platforms with 64-bit long type, a zend_long64 cast has been added, otherwise it's the same as 5.2 * Use this conversion method everywhere instead of some plain (long) casts Added 'L' parameter parsing specifier to ensure a LONG_MAX/MIN limit: * Essentially what 5.3's new conversion was doing in most cases * Functions with "limit" or "length" type params could be updated to use this, and prevent confusing overflow behavior with huge numbers (*also* in 5.2) - See bug #47854, for example; or even #42868 again # Test updates coming
* fix testJani Taskinen2009-06-021-1/+1
|
* fix compiler warnings by moving all std includes after include of zend_config.h.Nuno Lopes2009-06-011-2/+2
| | | | | this also fixes the build with stricter compilers than gcc (like clang)
* MFH: New testsArnaud Le Blanc2009-06-014-0/+142
| | | | | | # These tests were failing on different configurations, so adding them # all to get more chances of seeing one failing in case of problem.
* MFH: better fix for #48409 , #48428 , #48228Arnaud Le Blanc2009-06-015-12/+18
|
* MFH: Take small blocks cache into account in memory_get_usage()Arnaud Le Blanc2009-05-301-1/+5
|
* MFH: Fix aliasing issue (fixes #48409 , #48428 , #48228)Arnaud Le Blanc2009-05-302-4/+10
|
* - MF52: #42143, the constant NAN is reported as 0 on WindowsPierre Joye2009-05-291-0/+38
|
* MFH(r-1.103) Expand zend_symtable_update_current_key to allow specifying ↵Sara Golemon2009-05-251-3/+6
| | | | HashPosition
* MFH: Use zend_get_property_info() in get_class_vars() (fixes #46812)Arnaud Le Blanc2009-05-223-14/+13
|
* MFH: Fix bug #47859 parse_ini_file() does not like asterisk (*) in key in ↵Brian Shire2009-05-193-165/+176
| | | | the beginning, and allow [*_-] chars at start of ini labels
* Removing redundant UEXPECTZoe Slattery2009-05-181-34/+0
|
* MFH: Fixed module loading order and made request shutdown functions also toJani Taskinen2009-05-131-1/+1
| | | | | be loaded in reverse like all other shutdowns are.
* - MFH: Fixed bug #48248 (SIGSEGV when access to private property via &__get)Felipe Pena2009-05-122-2/+29
|
* - MFH: Fix code && new testFelipe Pena2009-05-112-2/+37
|
* - Added missing param checksFelipe Pena2009-05-111-0/+7
|
* MFH:- Removed unnecessary TSRMLS_FETCH() callsJani Taskinen2009-05-111-13/+4
|
* MFH: cs + wsJani Taskinen2009-05-111-116/+115
|
* MFH: syncJani Taskinen2009-05-101-122/+148
|
* sync with HEADJani Taskinen2009-05-102-49/+50
|
* - Missing titleFelipe Pena2009-05-071-0/+1
|
* - MFH: Parameter parsing changes for get_defined_constants() (Kalle)Felipe Pena2009-05-072-7/+7
|
* Fixed tests - thanks mgdmZoe Slattery2009-05-052-0/+2
|
* RegenerateMatt Wilmas2009-05-052-5336/+3831
|
* MFH: Implemented manual scanning for strings/comments, plus misc. fixesMatt Wilmas2009-05-052-290/+363
|
* MFH:- Fix compile warning in debug modeJani Taskinen2009-05-011-2/+2
|
* MFH: fix DVAL_TO_LVAL conversion for static array indexes, related to bug #46701Brian Shire2009-04-221-1/+3
|
* Fixed bug #48004 (Error handler prevents creation of default object)Dmitry Stogov2009-04-211-4/+2
|
* Fixed bug #48004 (Error handler prevents creation of default object)Dmitry Stogov2009-04-212-10/+31
|
* MFH: Fixed bug#47981 (error handler not called regardless)Hannes Magnusson2009-04-162-1/+20
|