| Commit message (Expand) | Author | Age | Files | Lines |
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
* | sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-05 | 1 | -1/+1 |
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
* | Added support for lambda functions and closures | Dmitry Stogov | 2008-07-14 | 1 | -0/+2 |
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
* | - Update copyright notices to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 |
* | - MFH Move reflection to its own extension | Marcus Boerger | 2005-11-30 | 1 | -2/+0 |
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 |
* | Centralize exceptions code in zend_exceptions.[ch]. | Zeev Suraski | 2004-02-12 | 1 | -503/+1 |
* | Exceptions updates: | Zeev Suraski | 2004-02-12 | 1 | -27/+22 |
* | Fix bug #27186 | Zeev Suraski | 2004-02-10 | 1 | -47/+61 |
* | Rewrote exception support. Fixes a few limitations and bugs in the old | Zeev Suraski | 2004-02-03 | 1 | -2/+2 |
* | Fix internal access to exception properties | Marcus Boerger | 2004-01-22 | 1 | -14/+14 |
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -1/+1 |
* | Do not show exception message if it's empty. | Andrei Zmievski | 2004-01-02 | 1 | -4/+10 |
* | Make default message look better. | Andrei Zmievski | 2003-12-31 | 1 | -1/+1 |
* | Show the exception message again after __toString() magic has been dropped. | Marcus Boerger | 2003-12-06 | 1 | -8/+12 |
* | Fixed crash demonstrated with ext/dom/tests/dom003.phpt test case. | Ilia Alshanetsky | 2003-12-05 | 1 | -3/+3 |
* | Check return value of exception::__tostring() | Marcus Boerger | 2003-11-30 | 1 | -39/+6 |
* | Make exception code more robust: | Marcus Boerger | 2003-11-29 | 1 | -9/+40 |
* | This forces a better error message for non working clone calls. | Marcus Boerger | 2003-10-25 | 1 | -0/+1 |
* | And use things to throw an exception here | Marcus Boerger | 2003-10-25 | 1 | -2/+3 |
* | You shall not clone Exception instances | Marcus Boerger | 2003-10-25 | 1 | -0/+7 |
* | Impement userspace iterator interfaces and tests. See tests for details | Marcus Boerger | 2003-10-22 | 1 | -0/+2 |
* | The string conversion method should be named __toString() | Marcus Boerger | 2003-10-22 | 1 | -5/+5 |
* | Added c-api for iterators | Marcus Boerger | 2003-10-17 | 1 | -0/+1 |
* | Fix cast function | Marcus Boerger | 2003-10-15 | 1 | -3/+3 |
* | Use studlyCaps in exception class | Marcus Boerger | 2003-09-17 | 1 | -14/+14 |
* | Use type instead of constant | Marcus Boerger | 2003-09-11 | 1 | -1/+1 |
* | Disallow to changing the backtrace | Marcus Boerger | 2003-09-06 | 1 | -1/+1 |
* | Provide string casting for exceptions by calling toString() | Marcus Boerger | 2003-09-05 | 1 | -2/+21 |
* | Fix handling of static properties initialized to arrays | Marcus Boerger | 2003-09-03 | 1 | -6/+6 |
* | Don't loose information if no parameters were shown. | Marcus Boerger | 2003-09-01 | 1 | -1/+4 |
* | Show {main} and prevent showing empty stack traces | Marcus Boerger | 2003-09-01 | 1 | -6/+11 |
* | Clearify this | Marcus Boerger | 2003-09-01 | 1 | -2/+7 |
* | Revert what I think is an accidental commit by Marcus that slipped in at revi... | Sebastian Bergmann | 2003-09-01 | 1 | -1/+1 |
* | Excluded chars < 32 when displaying string parameters that would obliterate o... | Marcus Boerger | 2003-08-31 | 1 | -2/+12 |
* | Make vspprintf available as zend utility function. Use it in exception output. | Marcus Boerger | 2003-08-31 | 1 | -13/+4 |
* | Actually fetch the parameter | Marcus Boerger | 2003-08-30 | 1 | -0/+1 |
* | - Calling abstract methods should be a error for consistency reason. | Marcus Boerger | 2003-08-30 | 1 | -9/+0 |
* | Even though it is ignored this should be correct | Marcus Boerger | 2003-08-30 | 1 | -1/+1 |
* | Add frame numer and finally display stack trace in the message. | Marcus Boerger | 2003-08-30 | 1 | -7/+32 |
* | Add exception::traceAsString() and exception::toString() | Marcus Boerger | 2003-08-30 | 1 | -4/+197 |
* | - The compiler can't detect all abstract function calls so we need to check. | Marcus Boerger | 2003-08-30 | 1 | -3/+12 |
* | Make those final (see comment) | Marcus Boerger | 2003-08-30 | 1 | -5/+9 |
* | Need to tell zend_fetch_debug_backtrace() whether to skip top function or not. | Marcus Boerger | 2003-08-29 | 1 | -1/+1 |
* | Add public read access to protected | Marcus Boerger | 2003-08-28 | 1 | -0/+8 |
* | Add zend_throw_exception_ex() which allows to format exception messages. | Marcus Boerger | 2003-08-28 | 1 | -0/+47 |
* | - Split debug_backtrace() into lowlevel c function and php function wrapper | Marcus Boerger | 2003-08-28 | 1 | -0/+9 |