Chuck Hagenbuch [Fri, 26 Jan 2001 20:07:22 +0000 (20:07 +0000)]
have DB::isError return true if passed "null". Now you can more consistently
use DB::isError(), since some of the db drivers return nulls from various
functions (like fetchRow()), and others don't... We should probably make all
of them just return errors. I did this for the mysql driver, as a start.
Uwe Steinmann [Fri, 26 Jan 2001 08:20:24 +0000 (08:20 +0000)]
- This is major change of the php pdf api to be closer to the pdflib api
done by Rainer Schaaf from pdflib GmbH.
- Some more functions has been implemented as well.
- backwards compatibility has been maintained a much as possible
Derick Rethans [Wed, 24 Jan 2001 09:24:26 +0000 (09:24 +0000)]
- Commited a patch that adds support for converting Images to WBMP format.
(Thanx to Denis Gasparin <denis@editnet.it>)
@- Added support for converting images from JPG/PNG on the fly with the GD
@ extension, which is usefull for creating dynamic WAP-sites (Derick)
Boian Bonev [Tue, 23 Jan 2001 21:46:04 +0000 (21:46 +0000)]
changed function names to be like vpopmail_add_user instead vpopmail_adduser
added vpopmail_error to report error string (vpopmail_errno global var)
put exec functions back in with _ex (vpopmail_add_domain_ex)
rewritten README to help users keep secure
fixed protos to state bool instead void return type
MySQL Team [Tue, 23 Jan 2001 16:48:50 +0000 (16:48 +0000)]
Upgrade ext/mysql/libmysql to version 3.23.32. One notable bug fix is
that the client can now connect to a server which is using a default
charset other than latin1.
Andrei Zmievski [Mon, 22 Jan 2001 17:27:02 +0000 (17:27 +0000)]
@- Fixed extract() to properly prefix numeric keys when EXTR_PREFIX_ALL is
@ used. (Andrei)
@- Added EXTR_PREFIX_INVALID flag to extract() to automatically prefix
@ string keys that do not constitute valid variable names. (Andrei)
Andi Gutmans [Sat, 20 Jan 2001 19:16:38 +0000 (19:16 +0000)]
- Patch from Sterling. Add API calls to add zval's as array indeces/
object properties. Add _ex functions which take the string length as an
argument for better performance.
Derick Rethans [Thu, 18 Jan 2001 22:17:05 +0000 (22:17 +0000)]
- Added the pg_lolseek function, which allows for arbitrary seeking within
a large object, and the pg_lotell call, which can be used to find the
current file offset for a large object (Submitted by: Adam Haberlach
<adam@newsnipple.com>).
@- Added the pg_lolseek and pg_lotell functions (Derick)
Andi Gutmans [Wed, 17 Jan 2001 17:34:16 +0000 (17:34 +0000)]
- Fix leak in fetch_dim_address() which was already fixed in
- fetch_dim_object(). Take the oppertunity to make both use the same
- function and not duplicate the code.
Sean Bright [Wed, 17 Jan 2001 01:10:50 +0000 (01:10 +0000)]
Added string comparison function strcoll(). It uses the current locale to
do the comparisons.
@- Added localeconv() and strcoll() functions for localization. (Sean)
Ben Mansell [Tue, 16 Jan 2001 10:44:52 +0000 (10:44 +0000)]
@ Support Zeus 3.3.8
Added changes to environment variable manipulations, to support Zeus 3.3.8
and increase compatibility between Zeus/IIS/Apache. Now, URLs like
http://foo.org/file.php/a/b/c/d work correctly.
# While testing, it looks like IIS+ISAPI is mishandling URLs like the above.
# The PATH_TRANSLATED given by ISAPI includes the /a/b/c/d bit of the URL,
# so using this var to find the script file to open on disk will not work.
# We now use SCRIPT_FILENAME if it is present (in Zeus 3.3.8)
# IIS doesn't seem to set this variable, it might be necessary to mangle
# SCRIPT_NAME and APPL_PHYSICAL_PATH together?