MySQL Team [Tue, 6 Nov 2001 16:59:07 +0000 (16:59 +0000)]
(PHP mysql_connect) Removed warning message regarding NONEXISTENT character
set, when the server's default character set != latin1.
@- Removed a warning message about a NONEXISTENT character set from
@ mysql_connect(), when the server's default character set != latin1.
Stig Venaas [Mon, 5 Nov 2001 11:50:52 +0000 (11:50 +0000)]
Fixed seg fault when using ldap_add (or modify) with value array not
indexed as 0, 1, ... In some cases it didn't give seg fault, but used
previously added value. Now gives warning.
@- Made ldap_add (and modify) give warning with illegal value arrays.
@ Previously seg faulted or added wrong value (Stig Venaas)
Andi Gutmans [Sun, 4 Nov 2001 19:30:49 +0000 (19:30 +0000)]
- Support instantiation of nested class. The following script now should
- work:
-<?php
- class foo
- {
- function bar()
- {
- print "bar() in class bar\n";
- }
-
- class barbara
- {
- function bar()
- {
- print "bar() in class foo::barbara\n";
- }
- }
- }
-
- $obj = new foo();
- $obj->bar();
-
- $obj = new foo::barbara();
- $obj->bar();
-
@- Some mnogosearch-3.2.x compilation bugs fixes.
@ Make crosswords and weight sections work with mnogosearch-3.2.x
@ UDM_PARAM_HLBEG, UDM_PARAM_HLEND mnoGoSearch Agent parameters
@ has been added (gluke)
- Some mnogosearch-3.2.x compilation bugs fixes.
Make crosswords and weight sections work with mnogosearch-3.2.x
UDM_PARAM_HLBEG, UDM_PARAM_HLEND mnoGoSearch Agent parameters
has been added (gluke)
James Moore [Sat, 3 Nov 2001 12:42:41 +0000 (12:42 +0000)]
@ - Fix bug 13885 (gmdate timezone handling on windows) (jmoore)
- relying on timezone and tzname isnt OK for gmdate etc, the only behaviour
that might not be right is the handling of T formatter under gmdate
should it return the machines timezone or GMT Standard Time??
Andi Gutmans [Sat, 3 Nov 2001 11:59:14 +0000 (11:59 +0000)]
- Add constructor to the zend_class_entry instead of looking it up each
- time by name.
- This will allow the next patch of being able to instantiate nested
- classes such as new foo::bar::barbara();
James Moore [Fri, 2 Nov 2001 19:19:24 +0000 (19:19 +0000)]
@- Fix behaviour of strtok. Bug 13866 (jmoore)
# I have brought the behaviour of strtok into line with how the
# libc strtok's behave. currently given
# <string1><token><string2><token><token>string>
# three recursive calls to strtok returns <string1>. <string2>, <token><string3>
# it now returns <string1>, <string2>, <string3>. (there was some
# debate in #php.bugs if it should return <string1>, <string2>, false, <string3>
# but php's strtok now behaves the same way as the libc version.
Tomas V.V.Cox [Thu, 1 Nov 2001 15:14:17 +0000 (15:14 +0000)]
- Added row limit support for fetchInto and fetchRow
- Added getRowCounter method for DB_result to get the row number
you are fetching in limited queries
Frank M. Kromann [Mon, 29 Oct 2001 23:41:15 +0000 (23:41 +0000)]
Reset the error (or message) from the server when calling fetch_row functions.
If the user conected and changed the database the message from the change was reported
when the user checked the error function after a failed fetch.
This cased problems in PEAR/DB.
If the fetch fails for other resons than a fetch after the last row, the message from the server will still be reported.