Commit Graph

40149 Commits

Author SHA1 Message Date
Greg Beaver
ab99c77a5e add a whole slew of missing returns after throwing an exception, and remove 1 spurious return after RETURN_TRUE 2008-01-14 05:12:46 +00:00
Greg Beaver
611da7a5c1 fix test (make OS-agnostic) 2008-01-14 05:03:02 +00:00
Greg Beaver
5c8c279a55 MFPECL: fix windows build for all cases, and always export symbols (Steph Fox) 2008-01-14 03:15:50 +00:00
Greg Beaver
3fd137c88f fix build on windows (Steph Fox) 2008-01-14 02:47:55 +00:00
ed822ca886 ChangeLog update 2008-01-14 01:31:35 +00:00
Greg Beaver
a98e3d1192 add missing define for statically-built zip ext 2008-01-13 23:37:27 +00:00
Greg Beaver
184e934511 use correct macro 2008-01-13 22:55:02 +00:00
Derick Rethans
c52fda6aae - Fixed TSRM builds.
#- Thanks for the hint Steph.
2008-01-13 18:42:51 +00:00
Ilia Alshanetsky
7129e68436 MFB: fixed test 2008-01-13 17:23:36 +00:00
Derick Rethans
6be4825777 - MF53: Added new date/time functionality:
* date_parse_from_format(): Parse date/time strings according to a format.
  * date_create_from_format()/DateTime::createFromFormat(): Create a date/time
    object by parsing a date/time string according to a given format.
  * date_get_last_errors()/DateTime::getLastErrors(): Return a list of warnings
    and errors that were found while parsing a date/time string through:
    - strtotime() / new DateTime
    - date_create_from_format() / DateTime::createFromFormat()
    - date_parse_from_format()
2008-01-13 15:16:48 +00:00
Nuno Lopes
fe197abf66 MFB: fix bug #42945 2008-01-13 14:57:54 +00:00
Nuno Lopes
5da2171f41 upgrade to PCRE 7.5 2008-01-13 12:48:00 +00:00
Greg Beaver
f9066b0e49 MFB: a few fixes: overwrote all my careful work in zipint_alias.h with zipint.h, so had to restore that.
PHP_RAW_NAMED_FE() won't work, have to use ZEND_RAW_FENTRY
2008-01-13 06:24:27 +00:00
Greg Beaver
f6c466a749 MFPECL: alias all zip identifiers to avoid potential name conflicts with other apache libs that may export zip symbols 2008-01-13 06:01:59 +00:00
172ea6f321 ChangeLog update 2008-01-13 01:31:34 +00:00
Greg Beaver
51603d0a48 wrong file version merged in fix for Bug #40189, here is the correct fix 2008-01-12 22:28:04 +00:00
Greg Beaver
9131f152ba new test for inclusion within phar that takes CWD into account 2008-01-12 22:25:40 +00:00
Greg Beaver
f5e4ff21dd fix segfault in Phar::mungServer() found in frontcontroller20.phpt 2008-01-12 22:21:50 +00:00
Greg Beaver
56e84a390c fix segfault in Phar::webPhar() if file is in root directory, found in frontcontroller16.phpt 2008-01-12 22:16:00 +00:00
Greg Beaver
27fa0688cc MFB: far better fix for bug #40189 2008-01-12 22:03:44 +00:00
Greg Beaver
368ba87ead fix faulty fix for Bug #40189, and provide real fix for the bug 2008-01-12 21:25:43 +00:00
Greg Beaver
64cb8c8111 fix conflict on win32 if phar compiled statically 2008-01-12 16:18:26 +00:00
Greg Beaver
9bcbbce5bf add definitions for MAX_WBITS in case it isn't defined 2008-01-12 16:15:17 +00:00
Greg Beaver
e54eb5513e clarify error message on why opening a stream wrapper failed for allow_url_include/allow_url_fopen, add test for allow_url_fopen 2008-01-12 15:50:17 +00:00
Greg Beaver
4df43510b9 make zip optional 2008-01-12 05:17:12 +00:00
Greg Beaver
e9ee7dbfc5 fix compile on windows
remove internal libzip
add required dep on zip (will make optional in a few minutes)
2008-01-12 04:32:19 +00:00
Greg Beaver
673e955d98 export symbols for use by other extensions like phar 2008-01-12 03:42:41 +00:00
Greg Beaver
67a15e332f add missing defines, s/filename_len/filename_length/ (thanks steph) - now over to the windows box and debug this properly 2008-01-12 02:13:52 +00:00
dc07ea8416 ChangeLog update 2008-01-12 01:31:36 +00:00
Dmitry Stogov
02cbdbe853 Simplified assignment to string offset 2008-01-11 15:10:50 +00:00
Lukas Smith
08eca67010 - added rules about real names and signatures 2008-01-11 14:01:52 +00:00
Lukas Smith
25ac2b3cb6 - minor typo fixes 2008-01-11 10:49:01 +00:00
Dmitry Stogov
c66fc45dcb Fixed unspecialized executor 2008-01-11 10:09:12 +00:00
Lukas Smith
8128032b47 - initial commit .. feedback appreciated 2008-01-11 09:40:20 +00:00
Dmitry Stogov
350a3daee4 Fixed bug #39346 (Unsetting a static variable inside a destructor causes segfault later on) 2008-01-11 08:42:19 +00:00
Greg Beaver
36f3d80779 stupid windows doesn't allow varargs macros, so remove it. remove unused variable 2008-01-11 07:39:02 +00:00
Greg Beaver
aae1442ee3 update package.xml 2008-01-11 07:33:32 +00:00
Greg Beaver
8fb4205a8d add Phar::interceptFileFuncs()
To intercept fopen(), file_get_contents(), opendir(), and all the stat-based functions so that
code like "if (is_readable('./config.inc.php'))" actually works inside of a phar
[DOC]
2008-01-11 07:30:03 +00:00
Greg Beaver
a38e4ff9a7 always mung PATH_INFO and PATH_TRANSLATED, fix segfault if tar-based phar has no stub 2008-01-11 02:52:13 +00:00
Ilia Alshanetsky
f4078bfc73 MFB: Fixed a bug with PDO::FETCH_COLUMN|PDO::FETCH_GROUP mode when a column
# by which to group by data is specified.
2008-01-11 01:48:19 +00:00
2f5e6e896e ChangeLog update 2008-01-11 01:31:38 +00:00
Greg Beaver
7e65f56264 MAPPHAR_ALLOC_FILE slipped in there somehow 2008-01-10 22:05:30 +00:00
Greg Beaver
74df58d255 fix tsrm build, fix various problems with initialization and zlib/bz2-compressed phars 2008-01-10 21:21:38 +00:00
Brian Shire
4ebc0325d8 - fix truncation of large values on 64-bit systems in http_build_query 2008-01-10 20:28:08 +00:00
Rob Richards
c803ef3b1b add errors when missing dependencies (Steph) 2008-01-10 18:21:23 +00:00
Greg Beaver
ab4c2caf4b add interception of is_dir(), file_exists() and file_get_contents() - will make these optional shortly 2008-01-10 15:13:00 +00:00
Antony Dovgal
335728651f fix #43750 (stristr() modifies string)
patch by Felipe Pena
2008-01-10 14:31:11 +00:00
Marcus Boerger
507ed4a13d - Fix bug in example code found by Surf Chen 2008-01-10 10:11:21 +00:00
Dmitry Stogov
1d9894a0c5 Added missing warning message 2008-01-10 09:38:41 +00:00
Antony Dovgal
c355a6a813 fix test 2008-01-10 08:45:54 +00:00