]>
granicus.if.org Git - php/log
Rasmus Lerdorf [Fri, 7 Dec 2001 17:29:53 +0000 (17:29 +0000)]
Let's not crash when no error str has been set
Dan Kalowsky [Fri, 7 Dec 2001 17:21:49 +0000 (17:21 +0000)]
Fix for bug #13628.
# basically handles a SQL_ERROR case for all odbc_execute()'s
Thies C. Arntzen [Fri, 7 Dec 2001 16:48:36 +0000 (16:48 +0000)]
fix #13801 (imap_rfc822_parse_adrlist changes arg1)
Andrei Zmievski [Fri, 7 Dec 2001 14:30:55 +0000 (14:30 +0000)]
Make sure refcount is 1 on stack zval.
Hartmut Holzgraefe [Fri, 7 Dec 2001 14:25:10 +0000 (14:25 +0000)]
old stuff removed
Sterling Hughes [Fri, 7 Dec 2001 13:20:18 +0000 (13:20 +0000)]
Fix long2ip's handling of unsigned longs, by accepting a string argument and
then manually converting the string to an unsigned long using strtoul()
Hartmut Holzgraefe [Fri, 7 Dec 2001 10:17:20 +0000 (10:17 +0000)]
proto fixes
Hartmut Holzgraefe [Fri, 7 Dec 2001 10:10:47 +0000 (10:10 +0000)]
proto fix
Hartmut Holzgraefe [Fri, 7 Dec 2001 09:49:26 +0000 (09:49 +0000)]
- proto descriptions
- changed to new parameter parser api
- changed to K&R style
- various cleanups
Egon Schmid [Fri, 7 Dec 2001 09:47:35 +0000 (09:47 +0000)]
Fixed one proto.
Egon Schmid [Fri, 7 Dec 2001 09:34:50 +0000 (09:34 +0000)]
Fixed some protos.
Stig Bakken [Fri, 7 Dec 2001 09:08:02 +0000 (09:08 +0000)]
* configure help indent fix
Hartmut Holzgraefe [Fri, 7 Dec 2001 07:27:00 +0000 (07:27 +0000)]
proto fix
Hartmut Holzgraefe [Fri, 7 Dec 2001 07:21:05 +0000 (07:21 +0000)]
protos prepared
Andrei Zmievski [Fri, 7 Dec 2001 06:19:20 +0000 (06:19 +0000)]
All right, let people RTFM.
Andrei Zmievski [Fri, 7 Dec 2001 06:15:02 +0000 (06:15 +0000)]
Add fold markers in strategic places and improve MINIT function a bit.
Andrei Zmievski [Fri, 7 Dec 2001 06:08:15 +0000 (06:08 +0000)]
If the method exists in object's function table, call it directly without
using __call() handler.
Andrei Zmievski [Fri, 7 Dec 2001 05:46:02 +0000 (05:46 +0000)]
Support overloaded method calls via __call().
Doug MacEachern [Fri, 7 Dec 2001 05:34:44 +0000 (05:34 +0000)]
apr_table_elts are now const
Doug MacEachern [Fri, 7 Dec 2001 05:31:07 +0000 (05:31 +0000)]
rename functions to match those supported in the apache 1.3 module:
apache_sub_request -> virtual
get_all_headers -> getallheaders
<changelog@php.net> [Fri, 7 Dec 2001 01:10:36 +0000 (01:10 +0000)]
ChangeLog update
<changelog@php.net> [Fri, 7 Dec 2001 01:10:33 +0000 (01:10 +0000)]
NEWS update
Hartmut Holzgraefe [Thu, 6 Dec 2001 22:27:49 +0000 (22:27 +0000)]
added protos (but without description yet)
Hartmut Holzgraefe [Thu, 6 Dec 2001 21:55:34 +0000 (21:55 +0000)]
some cleanup of ext_skel stuff
Hartmut Holzgraefe [Thu, 6 Dec 2001 21:51:52 +0000 (21:51 +0000)]
whitespace/indent
Hartmut Holzgraefe [Thu, 6 Dec 2001 21:39:01 +0000 (21:39 +0000)]
renamed rot13 to str_rot13()
Hartmut Holzgraefe [Thu, 6 Dec 2001 19:18:41 +0000 (19:18 +0000)]
proto fix
Doug MacEachern [Thu, 6 Dec 2001 19:03:29 +0000 (19:03 +0000)]
need to call ap_destroy_sub_req() before RETURN_TRUE in apache_sub_req()
(Jon Parise <jon@php.net>)
Hartmut Holzgraefe [Thu, 6 Dec 2001 19:02:27 +0000 (19:02 +0000)]
ported rot13() from php3
foobar [Thu, 6 Dec 2001 19:01:43 +0000 (19:01 +0000)]
Fix shared extension linking when compiling with e.g. CGI sapi.
Hartmut Holzgraefe [Thu, 6 Dec 2001 18:59:22 +0000 (18:59 +0000)]
proto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 18:37:05 +0000 (18:37 +0000)]
proto fixes
Andi Gutmans [Thu, 6 Dec 2001 18:05:18 +0000 (18:05 +0000)]
- Support constants. The following works now:
<?
class foo {
const GC = "foo constant\n";
}
define("GC", "Global constant\n");
namespace;
print GC;
namespace foo;
print GC;
namespace;
print foo::GC;
?>
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:51:48 +0000 (17:51 +0000)]
proto fixes
Andi Gutmans [Thu, 6 Dec 2001 17:47:04 +0000 (17:47 +0000)]
- Initial work on changing namespace scope. Only methods & variables
- right now.
<?
$hey = "Global hey\n";
class foo {
static $hey = "Namespace hey\n";
function bar()
{
print "in foo::bar()\n";
}
}
function bar()
{
print "in bar()\n";
}
bar();
namespace foo;
bar();
namespace;
bar();
namespace foo;
$bar_indirect = "bar";
$bar_indirect();
namespace;
print $hey;
namespace foo;
print $hey;
$hey = "Namespace hey #2\n";
namespace;
print $hey;
$hey = "Global hey #2\n";
namespace foo;
print $hey;
?>
Andi Gutmans [Thu, 6 Dec 2001 17:23:08 +0000 (17:23 +0000)]
- Nuke the namespace work I did. It'll be redone differently.
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:18:10 +0000 (17:18 +0000)]
fixing the proto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:15:59 +0000 (17:15 +0000)]
proto fix
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:11:42 +0000 (17:11 +0000)]
proto fix (sort of)
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:09:09 +0000 (17:09 +0000)]
proto fixes
Zeev Suraski [Thu, 6 Dec 2001 15:04:23 +0000 (15:04 +0000)]
Work around a quirk in the MySQL client library to fix unbuffered queries
Zeev Suraski [Thu, 6 Dec 2001 14:20:20 +0000 (14:20 +0000)]
Fix session_unregister()
Zeev Suraski [Thu, 6 Dec 2001 13:33:10 +0000 (13:33 +0000)]
Remove PS_DEL_VAR macro, always use PS_DEL_VARL()
Sterling Hughes [Thu, 6 Dec 2001 13:31:34 +0000 (13:31 +0000)]
use PHP_INFO_ALL and PHP_CREDITS_ALL instead of hardcoding them
Sterling Hughes [Thu, 6 Dec 2001 11:44:38 +0000 (11:44 +0000)]
2 arguments, not 3
Markus Fischer [Thu, 6 Dec 2001 09:56:24 +0000 (09:56 +0000)]
- Prototype new parameter which forces the creation of new links.
foobar [Thu, 6 Dec 2001 05:42:28 +0000 (05:42 +0000)]
Ignore .reg files created by pear_registry test.
Jason Greene [Thu, 6 Dec 2001 04:44:23 +0000 (04:44 +0000)]
Fix broken format string in socket_recv -> zend_parse_parameters
Rewrote socket_setopt and socket_getopt to be cleaner
@Added support for SO_RCVTIMEO and SO_SNDTIMEO to ext/sockets (Jason)
foobar [Thu, 6 Dec 2001 04:43:58 +0000 (04:43 +0000)]
Fix test when allow_call_time_pass_reference = Off
Doug MacEachern [Thu, 6 Dec 2001 01:25:48 +0000 (01:25 +0000)]
destroy subrequests returned from ap_sub_req_lookup_uri
<changelog@php.net> [Thu, 6 Dec 2001 01:10:43 +0000 (01:10 +0000)]
ChangeLog update
Doug MacEachern [Thu, 6 Dec 2001 00:53:58 +0000 (00:53 +0000)]
call to ap_sub_req_lookup_uri() needs to pass ctx->f->next rather than
NULL for next_filter argument in order for ap_run_sub_req() output to
end up where expected. ("William A. Rowe, Jr." <wrowe@rowe-clan.net>)
Hartmut Holzgraefe [Wed, 5 Dec 2001 23:07:13 +0000 (23:07 +0000)]
proto fix
Hartmut Holzgraefe [Wed, 5 Dec 2001 23:01:21 +0000 (23:01 +0000)]
proto fixes
Hartmut Holzgraefe [Wed, 5 Dec 2001 22:43:21 +0000 (22:43 +0000)]
proto fix
Hartmut Holzgraefe [Wed, 5 Dec 2001 22:38:49 +0000 (22:38 +0000)]
proto fixes
Sascha Schumann [Wed, 5 Dec 2001 21:45:33 +0000 (21:45 +0000)]
increase timestamp, because make tries to regenerate this file without any reason
Zeev Suraski [Wed, 5 Dec 2001 13:46:36 +0000 (13:46 +0000)]
Remove redundant include
Sebastian Bergmann [Wed, 5 Dec 2001 07:04:16 +0000 (07:04 +0000)]
Document recent changes.
<changelog@php.net> [Wed, 5 Dec 2001 01:10:23 +0000 (01:10 +0000)]
ChangeLog update
foobar [Wed, 5 Dec 2001 00:44:17 +0000 (00:44 +0000)]
Store the read bytes so that some sapi modules know how much to read.
foobar [Wed, 5 Dec 2001 00:32:23 +0000 (00:32 +0000)]
Make it more clear what session.referer_check is about.
Frank M. Kromann [Tue, 4 Dec 2001 23:33:52 +0000 (23:33 +0000)]
Remove check for "To:" in headers. If "Reply-To:" exists the the To: entry was not created.
This is WIn32 only.
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:57:16 +0000 (22:57 +0000)]
proto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:49:53 +0000 (22:49 +0000)]
proto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:46:06 +0000 (22:46 +0000)]
proto fixes
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:14:28 +0000 (22:14 +0000)]
proto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 21:18:26 +0000 (21:18 +0000)]
proto fixes
Sterling Hughes [Tue, 4 Dec 2001 19:40:48 +0000 (19:40 +0000)]
Make the length parameter to fgets optional (defaults to 1024)
Frank M. Kromann [Tue, 4 Dec 2001 18:47:32 +0000 (18:47 +0000)]
Enable imap_mail() on win32
Frank M. Kromann [Tue, 4 Dec 2001 18:47:07 +0000 (18:47 +0000)]
modified to enable imap_mail() on win32
Frank M. Kromann [Tue, 4 Dec 2001 18:46:49 +0000 (18:46 +0000)]
Adding files to enable imap_mail() on win32
Andi Gutmans [Tue, 4 Dec 2001 17:58:32 +0000 (17:58 +0000)]
- Damn Zeev :)
Sebastian Bergmann [Tue, 4 Dec 2001 13:20:26 +0000 (13:20 +0000)]
Mark sapi/servlet as what it is: experimental.
Sebastian Bergmann [Tue, 4 Dec 2001 13:19:42 +0000 (13:19 +0000)]
Mark ext/java as what it is: experimental.
Sebastian Bergmann [Tue, 4 Dec 2001 13:19:04 +0000 (13:19 +0000)]
Add Win32 specific files to .cvsignore.
Sebastian Bergmann [Tue, 4 Dec 2001 05:32:07 +0000 (05:32 +0000)]
Add XMLRPC extension.
<changelog@php.net> [Tue, 4 Dec 2001 01:10:53 +0000 (01:10 +0000)]
ChangeLog update
<changelog@php.net> [Tue, 4 Dec 2001 01:10:50 +0000 (01:10 +0000)]
NEWS update
foobar [Tue, 4 Dec 2001 00:28:36 +0000 (00:28 +0000)]
typo fix
foobar [Mon, 3 Dec 2001 23:54:10 +0000 (23:54 +0000)]
- Let's not default to any set of extra libraries. This way any kind of
builds of pdflib work. And this configure stays simple.
Shane Caraveo [Mon, 3 Dec 2001 22:33:32 +0000 (22:33 +0000)]
Make xmlrpc module compilable on windows. compiles, but untested.
Andi Gutmans [Mon, 3 Dec 2001 20:55:59 +0000 (20:55 +0000)]
- Missed one
Andi Gutmans [Mon, 3 Dec 2001 20:54:23 +0000 (20:54 +0000)]
- Nuke REGISTER_MAIN_*. Extension maintainers please make sure I didn't
- change something I wasn't supposed to. It should be fine IMO.
Sascha Schumann [Mon, 3 Dec 2001 15:32:12 +0000 (15:32 +0000)]
Fix declarations of static variables. Builds on AIX now.
Sterling Hughes [Mon, 3 Dec 2001 12:24:03 +0000 (12:24 +0000)]
Add a content length field to perhaps eliminate null truncation
Sterling Hughes [Mon, 3 Dec 2001 09:19:14 +0000 (09:19 +0000)]
Re-add support for HTTP file uploads
Sterling Hughes [Mon, 3 Dec 2001 08:28:12 +0000 (08:28 +0000)]
MFB
Derick Rethans [Mon, 3 Dec 2001 07:43:53 +0000 (07:43 +0000)]
- Added ob_get_level, which returns the nesting level of the output buffering
mechanism. (patch by Yasuo Ohgaki <yasuo_ohgaki@yahoo.com>)
@- Added ob_get_level, which returns the nesting level of the output buffering
@ mechanism. (Yasuo, Derick)
Frank M. Kromann [Mon, 3 Dec 2001 05:15:29 +0000 (05:15 +0000)]
Make php_reg_replace available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:14:28 +0000 (05:14 +0000)]
Make php_MD5* functions available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:12:48 +0000 (05:12 +0000)]
Make _php_math_number_format available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:11:29 +0000 (05:11 +0000)]
Make php_startpage and php_getlastmod available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:10:10 +0000 (05:10 +0000)]
Make php_setcookie available from shared extensions
<changelog@php.net> [Mon, 3 Dec 2001 01:10:54 +0000 (01:10 +0000)]
ChangeLog update
Harald Radi [Sun, 2 Dec 2001 21:10:15 +0000 (21:10 +0000)]
added mssql_fetch_assoc() to be more mysql conform
changed mssql_fetch_array() back to its default behaviour (MSSQL_BOTH)
Hartmut Holzgraefe [Sun, 2 Dec 2001 17:57:17 +0000 (17:57 +0000)]
- switch to new paramter parser
- make sure To: and Subject: do not end with a newline character
Markus Fischer [Sun, 2 Dec 2001 17:40:38 +0000 (17:40 +0000)]
Please Egon.
Bernd Roemer [Sun, 2 Dec 2001 17:31:11 +0000 (17:31 +0000)]
Allow unserializer_callback_func to be turned off.
Tomas V.V.Cox [Sun, 2 Dec 2001 16:29:37 +0000 (16:29 +0000)]
Rename Dependencie.php to Dependency.php