]>
granicus.if.org Git - php/log
Andi Gutmans [Tue, 16 Jul 2002 19:16:53 +0000 (19:16 +0000)]
- Before I forget to list it, this was also added.
Andi Gutmans [Tue, 16 Jul 2002 19:11:14 +0000 (19:11 +0000)]
- Syntactic sugar - Add "public" as a synonym for "var".
- Now we have the three P's.
You can do:
<?
class MyClass {
public $a;
private $b;
protected $c;
}
?>
Sascha Schumann [Tue, 16 Jul 2002 16:24:15 +0000 (16:24 +0000)]
refine
Georg Richter [Tue, 16 Jul 2002 14:31:55 +0000 (14:31 +0000)]
added mysql changes:
- php.ini option mysql.connect_timeout
- optional parameter client_flags (mysql_connect, mysql_pconnect)
- automatic rollback for non commited transactions
Jason Greene [Tue, 16 Jul 2002 14:14:22 +0000 (14:14 +0000)]
@Fixed infinite recursion crash bug in ticks (Jason)
Prevent reenterant calls to a user tick function by flagging the function
entry during call.
This prevents code like the following from infinitely recursing until a
crash occurs:
<?php
register_tick_function(a);
declare(ticks=1) {
function a() {
print "blah\n";
}
;
;
;
;
}
?>
Georg Richter [Tue, 16 Jul 2002 13:53:54 +0000 (13:53 +0000)]
Added support for php.ini parameter "mysql.connect_timeout"
Georg Richter [Tue, 16 Jul 2002 13:52:23 +0000 (13:52 +0000)]
Added php.ini option "mysql_connection.timeout"
<changelog@php.net> [Tue, 16 Jul 2002 00:18:24 +0000 (00:18 +0000)]
ChangeLog update
Derick Rethans [Mon, 15 Jul 2002 18:11:04 +0000 (18:11 +0000)]
- MFH of the crap removal
Andi Gutmans [Mon, 15 Jul 2002 18:09:56 +0000 (18:09 +0000)]
- Commit patch to support protected member variables (by Timm Friebe w/
- some fixes by me).
- You can't access protected variables from outside the object. If you want
- to see a protected member from your ancestors you need to declare the
- member as protected in the class you want to use it in. You can't
- redeclare a protected variable as private nor the other way around.
Edin Kadribasic [Mon, 15 Jul 2002 17:48:54 +0000 (17:48 +0000)]
Fix bug #16985 (wrong count of GET/POST variables).
Stefan Esser [Mon, 15 Jul 2002 16:37:15 +0000 (16:37 +0000)]
use Zend API to access llist count
Anantha Kesari H Y [Mon, 15 Jul 2002 11:14:18 +0000 (11:14 +0000)]
mysql_create_db and mysql_drop_db disabled for NetWare
Yasuo Ohgaki [Mon, 15 Jul 2002 10:04:01 +0000 (10:04 +0000)]
Clean up code a little (Remove a use of magic number)
Change/add appropriate comments.
Andi Gutmans [Mon, 15 Jul 2002 04:11:13 +0000 (04:11 +0000)]
- Really implement bool increment/decrement as flip-flop.
Yasuo Ohgaki [Mon, 15 Jul 2002 00:37:53 +0000 (00:37 +0000)]
Fixed news
Yasuo Ohgaki [Mon, 15 Jul 2002 00:35:46 +0000 (00:35 +0000)]
header sounds like http header. header -> header file
<changelog@php.net> [Mon, 15 Jul 2002 00:22:42 +0000 (00:22 +0000)]
NEWS update
<changelog@php.net> [Mon, 15 Jul 2002 00:21:10 +0000 (00:21 +0000)]
ChangeLog update
Shane Caraveo [Sun, 14 Jul 2002 22:57:53 +0000 (22:57 +0000)]
make this work with wsdl also
Andrei Zmievski [Sun, 14 Jul 2002 22:36:47 +0000 (22:36 +0000)]
Fix Bug #18341.
@- Fixed cases where preg_split() incorrectly terminated final element if
@ it contained null byte. (Andrei)
Shane Caraveo [Sun, 14 Jul 2002 22:16:21 +0000 (22:16 +0000)]
a few fixes
fix __isfault
fix decimal encoding
fix a couple crashers in release builds by initializing variables
set http to 1.0 since 1.1 features are not really supported
Shane Caraveo [Sun, 14 Jul 2002 22:14:38 +0000 (22:14 +0000)]
A start towards porting interop tests to php-soap
Andi Gutmans [Sun, 14 Jul 2002 19:23:18 +0000 (19:23 +0000)]
- Nuke delete(). It was a big mistake to introduce it and I finally
- understand why Java didn't do so.
- If you still want to control destruction of your object then either make
- sure you kill all references or create a destruction method which you
- call yourself.
Sascha Schumann [Sun, 14 Jul 2002 18:30:11 +0000 (18:30 +0000)]
it is not really cold though
Andi Gutmans [Sun, 14 Jul 2002 18:17:07 +0000 (18:17 +0000)]
- Nuke some unused code
Sascha Schumann [Sun, 14 Jul 2002 18:15:08 +0000 (18:15 +0000)]
the sun was shining a few days ago
Sascha Schumann [Sun, 14 Jul 2002 18:01:08 +0000 (18:01 +0000)]
integrate the public keep-alive patch
the patch did not handle pipeling at all, so that some code had to be added
from Premium thttpd
persistent connections are supported, if a script sets the Content-Length
header
Rasmus Lerdorf [Sun, 14 Jul 2002 15:45:33 +0000 (15:45 +0000)]
Fix a couple of protos
Sascha Schumann [Sun, 14 Jul 2002 13:48:46 +0000 (13:48 +0000)]
thttpd blocks in rare circumstances where it cannot write out a small HTTP
response (happened at customer sites). The response is now written out
using the standard state machine.
the buffer which is handed to thttpd by php is now simply dealt with as if
it were a thttpd generated response (avoids code duplication).
Sascha Schumann [Sun, 14 Jul 2002 13:10:34 +0000 (13:10 +0000)]
make the sapi module hand off a buffer to thttpd for final data delivery,
instead of blocking the whole process
Derick Rethans [Sun, 14 Jul 2002 11:48:45 +0000 (11:48 +0000)]
MFZE1
Derick Rethans [Sun, 14 Jul 2002 09:37:42 +0000 (09:37 +0000)]
- MFZE1
Derick Rethans [Sun, 14 Jul 2002 09:29:42 +0000 (09:29 +0000)]
- MFZE1
Yasuo Ohgaki [Sun, 14 Jul 2002 01:12:23 +0000 (01:12 +0000)]
Move comment.
Remove a skip condition does not required.
foobar [Sun, 14 Jul 2002 00:27:52 +0000 (00:27 +0000)]
IF --disable-mbstr-enc-trans is used OR mbstring is compiled as shared
extension, these functions are not available.
<changelog@php.net> [Sun, 14 Jul 2002 00:17:41 +0000 (00:17 +0000)]
ChangeLog update
foobar [Sun, 14 Jul 2002 00:12:13 +0000 (00:12 +0000)]
These options are all enabled by default. (why?)
foobar [Sun, 14 Jul 2002 00:11:44 +0000 (00:11 +0000)]
These options are all enabled by default. (why?)
Yasuo Ohgaki [Sun, 14 Jul 2002 00:08:22 +0000 (00:08 +0000)]
Fix tests. Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp>
Sander Roobol [Sat, 13 Jul 2002 09:26:36 +0000 (09:26 +0000)]
Fixed win32 build
foobar [Sat, 13 Jul 2002 08:42:38 +0000 (08:42 +0000)]
Kill compiler warning
foobar [Sat, 13 Jul 2002 08:08:36 +0000 (08:08 +0000)]
Fix SKIPs for these tests.
foobar [Sat, 13 Jul 2002 07:10:59 +0000 (07:10 +0000)]
nuke unused variable warning
foobar [Sat, 13 Jul 2002 05:53:06 +0000 (05:53 +0000)]
Fixed some unused variable warnings
foobar [Sat, 13 Jul 2002 05:42:47 +0000 (05:42 +0000)]
Nuke unused variable
foobar [Sat, 13 Jul 2002 05:42:01 +0000 (05:42 +0000)]
Kill compile warning
foobar [Sat, 13 Jul 2002 05:01:55 +0000 (05:01 +0000)]
Really fix it this time..
foobar [Sat, 13 Jul 2002 04:45:21 +0000 (04:45 +0000)]
Fixed bug: #16638.
foobar [Sat, 13 Jul 2002 04:43:12 +0000 (04:43 +0000)]
Needed this to be able to test safe-mode stuff on cmd-line
foobar [Sat, 13 Jul 2002 04:13:43 +0000 (04:13 +0000)]
- Made the trim functions use same base function. (less code :)
- Renamed php_trim2 -> php_trim (not used anyplace else, yet)
- Made php_trim abit more usable for external use. (not necessary to use
zvals with it anymore)
foobar [Sat, 13 Jul 2002 04:06:26 +0000 (04:06 +0000)]
Fixed the undefined reference to 'gdttf' errors when using bundled GD lib.
# I removed that in the first place..don't remember why. :(
Yasuo Ohgaki [Sat, 13 Jul 2002 01:05:13 +0000 (01:05 +0000)]
Fixed tests. Patch by Yoshimori Koizumi <readjust@deneb.freemail.ne.jp>
foobar [Sat, 13 Jul 2002 00:52:18 +0000 (00:52 +0000)]
Fix bug: #18285, php_checkuid() mangled the passed path.
<changelog@php.net> [Sat, 13 Jul 2002 00:16:42 +0000 (00:16 +0000)]
ChangeLog update
foobar [Sat, 13 Jul 2002 00:15:22 +0000 (00:15 +0000)]
- Fixed bug: #18268. If pcre is build as shared extension, we can't use
php_pcre_replace() here.
- Cleaned up a bit.
foobar [Fri, 12 Jul 2002 23:25:30 +0000 (23:25 +0000)]
Partially reverted the netware related commit.
foobar [Fri, 12 Jul 2002 22:59:35 +0000 (22:59 +0000)]
Beauify a bit..
foobar [Fri, 12 Jul 2002 22:57:19 +0000 (22:57 +0000)]
Some ws fixes. And removed the problems causing typedef for ushort.
foobar [Fri, 12 Jul 2002 22:34:43 +0000 (22:34 +0000)]
- Fixed compile (bug #18297) on such systems which define uchar.
foobar [Fri, 12 Jul 2002 22:11:54 +0000 (22:11 +0000)]
Bail out the given path does not have the libraries in it.
foobar [Fri, 12 Jul 2002 21:46:36 +0000 (21:46 +0000)]
Fixed bug: #18295. e_os.h is not supposed to be included..
Anantha Kesari H Y [Fri, 12 Jul 2002 13:02:45 +0000 (13:02 +0000)]
File needed to build extensions for NetWare
Anantha Kesari H Y [Fri, 12 Jul 2002 12:55:56 +0000 (12:55 +0000)]
Added NetWare changes
foobar [Fri, 12 Jul 2002 12:13:45 +0000 (12:13 +0000)]
Make configure stop if something is wrong with libraries/linking.
foobar [Fri, 12 Jul 2002 11:45:05 +0000 (11:45 +0000)]
Fix ZTS build
Sebastian Bergmann [Fri, 12 Jul 2002 04:57:14 +0000 (04:57 +0000)]
Remove unused variables.
foobar [Fri, 12 Jul 2002 04:41:48 +0000 (04:41 +0000)]
missing entry for config.h.in
foobar [Fri, 12 Jul 2002 04:41:26 +0000 (04:41 +0000)]
.libs/ directories are created when building shared extensions.
foobar [Fri, 12 Jul 2002 02:37:48 +0000 (02:37 +0000)]
minor typo fixbug.
foobar [Fri, 12 Jul 2002 01:49:58 +0000 (01:49 +0000)]
- Added predefined constants for the upload errors.
- Removed the debugging error (not useful for end-users)
<changelog@php.net> [Fri, 12 Jul 2002 00:18:23 +0000 (00:18 +0000)]
NEWS update
<changelog@php.net> [Fri, 12 Jul 2002 00:17:37 +0000 (00:17 +0000)]
ChangeLog update
foobar [Thu, 11 Jul 2002 20:29:53 +0000 (20:29 +0000)]
ws fix
Derick Rethans [Thu, 11 Jul 2002 19:38:08 +0000 (19:38 +0000)]
- Fix for bug #18283
#- It doesn't work from within a script anyways
Rui Hirokawa [Thu, 11 Jul 2002 15:45:35 +0000 (15:45 +0000)]
added mbstring.language option in ext/mbstring.
Tomas V.V.Cox [Thu, 11 Jul 2002 15:39:57 +0000 (15:39 +0000)]
typo
Tomas V.V.Cox [Thu, 11 Jul 2002 15:36:48 +0000 (15:36 +0000)]
Prepare package.xml for Net_SMTP
Sascha Schumann [Thu, 11 Jul 2002 14:41:03 +0000 (14:41 +0000)]
Break up the INSTALL_IT line into comprehensible pieces
and fix a bug related to [..] quotes.
Sascha Schumann [Thu, 11 Jul 2002 13:33:22 +0000 (13:33 +0000)]
the variable interpolation was already subject to IFS treatment,
which resulted in the execution of the foremost directory.
we capture the output before setting IFS now
Adam Dickmeiss [Thu, 11 Jul 2002 13:04:03 +0000 (13:04 +0000)]
yaz.max_links, yaz_log_file setting. User-defined Other Info
Adam Dickmeiss [Thu, 11 Jul 2002 13:02:52 +0000 (13:02 +0000)]
Include YAZ support libs (if any)
Sascha Schumann [Thu, 11 Jul 2002 08:44:42 +0000 (08:44 +0000)]
Use a simple IFS; set step to interprete the httpd -v output
Uwe Steinmann [Thu, 11 Jul 2002 06:35:28 +0000 (06:35 +0000)]
- added missing file
James Cox [Thu, 11 Jul 2002 04:36:22 +0000 (04:36 +0000)]
adding patch from http://www.coupin.net/gd-freetype/ which makes images anti aliased (and therefore more readable).
#this does actually work.
Yasuo Ohgaki [Thu, 11 Jul 2002 03:44:12 +0000 (03:44 +0000)]
Added traslit test files. Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp>
Yasuo Ohgaki [Thu, 11 Jul 2002 03:37:28 +0000 (03:37 +0000)]
Fix #16069. Patch by Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp>
@ Made iconv() work well with libiconv or libgconv. (Moriyoshi, Yasuo)
foobar [Thu, 11 Jul 2002 02:48:00 +0000 (02:48 +0000)]
Fix bug: #14052
foobar [Thu, 11 Jul 2002 02:35:45 +0000 (02:35 +0000)]
Fixed bug: #16637, username/password needs to be urlencoded.
foobar [Thu, 11 Jul 2002 02:31:38 +0000 (02:31 +0000)]
Fixed bug: #18250
foobar [Thu, 11 Jul 2002 00:57:28 +0000 (00:57 +0000)]
news-entry-robot(tm)
<changelog@php.net> [Thu, 11 Jul 2002 00:19:46 +0000 (00:19 +0000)]
NEWS update
<changelog@php.net> [Thu, 11 Jul 2002 00:18:34 +0000 (00:18 +0000)]
ChangeLog update
Harald Radi [Wed, 10 Jul 2002 20:27:17 +0000 (20:27 +0000)]
merging parts of the old com extension to the new rpc extension
Jason Greene [Wed, 10 Jul 2002 15:23:47 +0000 (15:23 +0000)]
@Fixed socket_set_timeout on win32 (Jason, Edin, Jani)
Georg Richter [Wed, 10 Jul 2002 13:16:24 +0000 (13:16 +0000)]
1) New constants:
MYSQL_CLIENT_SSL for ssl connections
MYSQL_CLIENT_COMPRESS for compressed protocol
MYSQL_CLIENT_IGNORE_SPACES for spaces after function names
MYSQL_CLIENT_INTERACTIVE for closing connections after timeout_interactive seconds
2) Optional parameter client_flags for mysql_connect and mysql_pconnect
For parameter desctiption see 1.
This also should fix bug #13589
3) New internal function _rollback_mysql_transactions, which is called via
PHP_RSHUTDOWN_FUNCTION
This fixes bug #12513
Stig Bakken [Wed, 10 Jul 2002 07:18:12 +0000 (07:18 +0000)]
* signed these packages
<changelog@php.net> [Wed, 10 Jul 2002 00:18:30 +0000 (00:18 +0000)]
ChangeLog update
Derick Rethans [Tue, 9 Jul 2002 21:42:07 +0000 (21:42 +0000)]
- Initialize var properly
Stig Venaas [Tue, 9 Jul 2002 20:54:49 +0000 (20:54 +0000)]
Hopefully fixes build with IBM's LDAP library