]>
granicus.if.org Git - php/log
James Cox [Wed, 27 Feb 2002 11:15:54 +0000 (11:15 +0000)]
correcting grammar so it's readable
Sebastian Bergmann [Wed, 27 Feb 2002 09:30:40 +0000 (09:30 +0000)]
Add 4.1.2 NEWS entries to HEAD.
Sebastian Bergmann [Wed, 27 Feb 2002 07:29:33 +0000 (07:29 +0000)]
URLEncoder.encode(string) is deprecated in the Java 2 SDK 1.4.
<changelog@php.net> [Wed, 27 Feb 2002 01:33:13 +0000 (01:33 +0000)]
ChangeLog update
Andi Gutmans [Tue, 26 Feb 2002 19:38:41 +0000 (19:38 +0000)]
- Hopefully fix the shutdown_memory_manager() stuff. Part of my previous
- patch seems to have gotten lost
Sebastian Bergmann [Tue, 26 Feb 2002 19:31:21 +0000 (19:31 +0000)]
TSRM Cleanup.
Andi Gutmans [Tue, 26 Feb 2002 19:17:26 +0000 (19:17 +0000)]
- MFZE1
Andi Gutmans [Tue, 26 Feb 2002 18:59:27 +0000 (18:59 +0000)]
- Pass shutdown_memory_manager the TSRMLS context.
Dan Kalowsky [Tue, 26 Feb 2002 15:33:54 +0000 (15:33 +0000)]
Bug fix 15719 as submited by Joseph Southwell and allows NULL values in ODBC
# I haven't been able to fully test this due to MacOSX compliation errors.
# if someone in the QA group could that'd be appriciated.
Edin Kadribasic [Tue, 26 Feb 2002 11:00:20 +0000 (11:00 +0000)]
Allow use of dl() when CLI is compiled with ZTS (bug #15717).
<changelog@php.net> [Tue, 26 Feb 2002 01:27:36 +0000 (01:27 +0000)]
ChangeLog update
jim winstead [Mon, 25 Feb 2002 18:27:13 +0000 (18:27 +0000)]
make it more clear that --with-apache and --with-apxs only work with apache 1.x.
<changelog@php.net> [Mon, 25 Feb 2002 01:24:04 +0000 (01:24 +0000)]
NEWS update
<changelog@php.net> [Mon, 25 Feb 2002 01:22:15 +0000 (01:22 +0000)]
ChangeLog update
Derick Rethans [Sun, 24 Feb 2002 14:07:10 +0000 (14:07 +0000)]
- Fix the fix.. no need to escape " in single quotes
Derick Rethans [Sun, 24 Feb 2002 13:26:43 +0000 (13:26 +0000)]
- Add slashes around string output
Derick Rethans [Sun, 24 Feb 2002 13:01:10 +0000 (13:01 +0000)]
- Update with XP (Thanx to Jan for the patch)
Stig Bakken [Sun, 24 Feb 2002 10:45:28 +0000 (10:45 +0000)]
* fix broken dtd
# Tomas, there is no way to do what you want in the DTD without switching
# from XML to SGML. Sorry :-)
Sebastian Bergmann [Sun, 24 Feb 2002 07:54:04 +0000 (07:54 +0000)]
Make phpinfo() look nicer.
<changelog@php.net> [Sun, 24 Feb 2002 01:21:33 +0000 (01:21 +0000)]
ChangeLog update
Markus Fischer [Sat, 23 Feb 2002 22:46:19 +0000 (22:46 +0000)]
- Fix info output (Peter Neuman <neuman_peter@hotmail.com>).
Tomas V.V.Cox [Sat, 23 Feb 2002 21:21:18 +0000 (21:21 +0000)]
DTD corrections (make it require minimal data for installer)
Stig Bakken [Sat, 23 Feb 2002 15:32:36 +0000 (15:32 +0000)]
* started implementing new "cross-environment" command API
# work in progress, not tested at all yet!
Holger Zimmermann [Sat, 23 Feb 2002 15:17:00 +0000 (15:17 +0000)]
Fixed functionality to read in server variables.
Tomas V.V.Cox [Sat, 23 Feb 2002 13:47:16 +0000 (13:47 +0000)]
Point readers to pear web
Tomas V.V.Cox [Sat, 23 Feb 2002 13:44:52 +0000 (13:44 +0000)]
outdated TODO not needed for the moment
Rui Hirokawa [Sat, 23 Feb 2002 01:36:55 +0000 (01:36 +0000)]
fixed configure error with freetype1.
<changelog@php.net> [Sat, 23 Feb 2002 01:24:50 +0000 (01:24 +0000)]
ChangeLog update
Rui Hirokawa [Sat, 23 Feb 2002 00:04:20 +0000 (00:04 +0000)]
fixed a comment and default output encoding changed to pass.
Rui Hirokawa [Sat, 23 Feb 2002 00:00:15 +0000 (00:00 +0000)]
php.h included.
Vincent Blavet [Fri, 22 Feb 2002 21:57:04 +0000 (21:57 +0000)]
* Packager : Changing the order of the files in the package archive file.
The package.xml file is now at the 'root' of the archive, the files tree are under a 'packagename'-'packageversion' folder
* Installer : installing the knew archive format AND supporting the existing format
Frank M. Kromann [Fri, 22 Feb 2002 19:03:11 +0000 (19:03 +0000)]
Return true on update success.
Yasuo Ohgaki [Fri, 22 Feb 2002 11:39:23 +0000 (11:39 +0000)]
Fix crash bug 15607
<changelog@php.net> [Fri, 22 Feb 2002 01:29:52 +0000 (01:29 +0000)]
ChangeLog update
Sebastian Bergmann [Thu, 21 Feb 2002 13:10:31 +0000 (13:10 +0000)]
Maintain ZEND_CHANGES to account for the addition of private member variables.
Andi Gutmans [Thu, 21 Feb 2002 11:50:44 +0000 (11:50 +0000)]
- Experimental support for private members.
<?
class MyClass {
private $Hello = "Hello, World!\n";
function printHello()
{
print $this->Hello;
}
}
class MyClass2 extends MyClass {
function printHello()
{
MyClass::printHello(); /* Should print */
print $this->Hello; /* Shouldn't print out anything */
}
}
$obj = new MyClass();
print $obj->Hello; /* Shouldn't print out anything */
$obj->printHello(); /* Should print */
$obj = new MyClass2();
print $obj->Hello; /* Shouldn't print out anything */
$obj->printHello();
?>
Yasuo Ohgaki [Thu, 21 Feb 2002 11:44:41 +0000 (11:44 +0000)]
Added fmod() function
# Is there any reason that math.c does not use errno?
Sebastian Bergmann [Thu, 21 Feb 2002 07:00:15 +0000 (07:00 +0000)]
Add aggregation to Win32 build.
Andrei Zmievski [Thu, 21 Feb 2002 03:32:42 +0000 (03:32 +0000)]
Adding object aggregation capability along with tests.
Sean Bright [Thu, 21 Feb 2002 02:12:37 +0000 (02:12 +0000)]
Fix for bug #15605
# If someone more familiar with the build system sees a problem with this
# feel free to revert it. It simply escapes #'s that are put into
# config_vars.mk
<changelog@php.net> [Thu, 21 Feb 2002 01:43:18 +0000 (01:43 +0000)]
ChangeLog update
Christian Stocker [Wed, 20 Feb 2002 23:35:20 +0000 (23:35 +0000)]
"o|a|b" is not valid ZE code. changed to "o|ab"
Vincent Blavet [Wed, 20 Feb 2002 22:39:16 +0000 (22:39 +0000)]
Config variables must be set between "" while using pear.bat windows script
Vincent Blavet [Wed, 20 Feb 2002 22:15:28 +0000 (22:15 +0000)]
* Correct bug while using windows dir separator. It is now supported
Rasmus Lerdorf [Wed, 20 Feb 2002 18:18:39 +0000 (18:18 +0000)]
Split CRC32 table out into a header file so other code can use it
Derick Rethans [Wed, 20 Feb 2002 15:53:25 +0000 (15:53 +0000)]
- Fix for bug #15628 (for real now :)
Derick Rethans [Wed, 20 Feb 2002 10:41:18 +0000 (10:41 +0000)]
- Reformatting
Derick Rethans [Wed, 20 Feb 2002 07:24:53 +0000 (07:24 +0000)]
- Fix for bug #15638
<changelog@php.net> [Wed, 20 Feb 2002 01:19:43 +0000 (01:19 +0000)]
ChangeLog update
David Hedbor [Tue, 19 Feb 2002 20:46:29 +0000 (20:46 +0000)]
Fixed environment hashing again.
Derick Rethans [Tue, 19 Feb 2002 15:58:31 +0000 (15:58 +0000)]
- Fix removal of #line lines
Derick Rethans [Tue, 19 Feb 2002 10:18:50 +0000 (10:18 +0000)]
- Update to note that I'm the mcrypt extension maintainer
Marc Boeren [Tue, 19 Feb 2002 10:10:11 +0000 (10:10 +0000)]
changed comment for dbx module
Dan Kalowsky [Tue, 19 Feb 2002 01:42:51 +0000 (01:42 +0000)]
#updating the EXTENSIONS to show the proper recent maintainer.
<changelog@php.net> [Tue, 19 Feb 2002 01:19:02 +0000 (01:19 +0000)]
ChangeLog update
Martin Jansen [Mon, 18 Feb 2002 10:27:36 +0000 (10:27 +0000)]
='typo'
Marc Boeren [Mon, 18 Feb 2002 10:22:09 +0000 (10:22 +0000)]
Oops: source copy&paste should be done with care :) (Mc)
Marc Boeren [Mon, 18 Feb 2002 09:21:51 +0000 (09:21 +0000)]
Added support for Sybase-CT to dbx module (Mc).
<changelog@php.net> [Mon, 18 Feb 2002 01:20:53 +0000 (01:20 +0000)]
ChangeLog update
Martin Jansen [Sun, 17 Feb 2002 15:32:53 +0000 (15:32 +0000)]
* Fix for bug #15500
Stig Bakken [Sun, 17 Feb 2002 14:43:16 +0000 (14:43 +0000)]
* allow <license> in both <package> and <release>
* added <changelog> element
* added "data" role for files
* allow nested <dir> elements
Alex Waugh [Sun, 17 Feb 2002 12:55:52 +0000 (12:55 +0000)]
Updated to new TSRM macros
Jon Parise [Sun, 17 Feb 2002 04:31:30 +0000 (04:31 +0000)]
Image/Remote.php and Mail/mime.php have moved to the pear/ repository.
<changelog@php.net> [Sat, 16 Feb 2002 01:21:49 +0000 (01:21 +0000)]
ChangeLog update
Andrei Zmievski [Fri, 15 Feb 2002 17:39:25 +0000 (17:39 +0000)]
Fix.
Jason Greene [Fri, 15 Feb 2002 17:33:08 +0000 (17:33 +0000)]
Fix parse string
(Since arg6 is initialized at null this still catches the wrong param condition)
Dan Kalowsky [Fri, 15 Feb 2002 17:24:44 +0000 (17:24 +0000)]
fix for bug 15516, patch submitted by torben@php.net
Derick Rethans [Fri, 15 Feb 2002 09:06:45 +0000 (09:06 +0000)]
- Make the errorcode 255. (Doing docs right away)
Yasuo Ohgaki [Fri, 15 Feb 2002 03:30:15 +0000 (03:30 +0000)]
Fix problem with sesssion_pgsql module
Sean Bright [Fri, 15 Feb 2002 03:08:41 +0000 (03:08 +0000)]
Fix cosmetic bug. (#15142)
<changelog@php.net> [Fri, 15 Feb 2002 01:22:47 +0000 (01:22 +0000)]
ChangeLog update
Derick Rethans [Thu, 14 Feb 2002 20:16:08 +0000 (20:16 +0000)]
- Let php_execute_script return 0 on failure and 1 on sucess, and change
SAPIs accordingly. (Andrei, Derick)
Edin Kadribasic [Thu, 14 Feb 2002 16:45:07 +0000 (16:45 +0000)]
Turned implicit_flush on.
Cleaned up help text.
Edin Kadribasic [Thu, 14 Feb 2002 16:44:13 +0000 (16:44 +0000)]
Added README file for CLI SAPI.
Derick Rethans [Thu, 14 Feb 2002 15:02:49 +0000 (15:02 +0000)]
- Remove duplicate constant
Stanislav Malyshev [Thu, 14 Feb 2002 09:20:51 +0000 (09:20 +0000)]
Pass TSRM to create_object
Andrei Zmievski [Thu, 14 Feb 2002 04:01:53 +0000 (04:01 +0000)]
Fix the bug where the declared properties without init values were not
entered into the table.
<changelog@php.net> [Thu, 14 Feb 2002 01:20:58 +0000 (01:20 +0000)]
NEWS update
<changelog@php.net> [Thu, 14 Feb 2002 01:20:35 +0000 (01:20 +0000)]
ChangeLog update
Frank M. Kromann [Wed, 13 Feb 2002 23:27:45 +0000 (23:27 +0000)]
Fixing release and debug build on Win32
Vincent Blavet [Wed, 13 Feb 2002 21:27:54 +0000 (21:27 +0000)]
* Synchronize pearwin script with pearcmd-xxx.php commands
* Still work to do
Vincent Blavet [Wed, 13 Feb 2002 21:26:39 +0000 (21:26 +0000)]
* user system/user config rather than default value
Andi Gutmans [Wed, 13 Feb 2002 19:26:07 +0000 (19:26 +0000)]
@ Allow a series of consecutive catch() statements (Andi, Zend Engine)
<?php
class MyException1 {
}
class MyException2 {
}
try {
throw new MyException2();
} catch (MyException1 $m) {
print "Caught MyException1";
} catch (MyException2 $m) {
print "Caught MyException2";
}
Yasuo Ohgaki [Wed, 13 Feb 2002 13:11:36 +0000 (13:11 +0000)]
Fix memory leaks.
Marc Boeren [Wed, 13 Feb 2002 11:09:48 +0000 (11:09 +0000)]
Fixed bug where users with empty passwords could not connect. (Mc)
# thanks for testing, Yasuo. Could you commit the mem-leak patch now?
Vincent Blavet [Wed, 13 Feb 2002 08:50:07 +0000 (08:50 +0000)]
- Adding support for remote-list command (with XML-RPC installed)
- Start support of show-config (still work to do ...)
Andrei Zmievski [Wed, 13 Feb 2002 04:56:41 +0000 (04:56 +0000)]
Ack.
Stig Bakken [Wed, 13 Feb 2002 01:40:18 +0000 (01:40 +0000)]
* "pear-get install Auth" works now
<changelog@php.net> [Wed, 13 Feb 2002 01:21:31 +0000 (01:21 +0000)]
NEWS update
<changelog@php.net> [Wed, 13 Feb 2002 01:20:31 +0000 (01:20 +0000)]
ChangeLog update
Stig Bakken [Wed, 13 Feb 2002 01:09:55 +0000 (01:09 +0000)]
* don't use ext/overload yet
Stig Bakken [Wed, 13 Feb 2002 01:07:30 +0000 (01:07 +0000)]
* print package name
Jason Greene [Tue, 12 Feb 2002 20:31:30 +0000 (20:31 +0000)]
Fix entry
Jan Lehnardt [Tue, 12 Feb 2002 18:29:27 +0000 (18:29 +0000)]
- added support for different error messages for the following cases:
-
- if a user with unsufficient permissions trys to select a database
- PEAR::DB previously threw a "no database selected" error instead
- of a more proper "insufficient permissions". This is fixed now.
-
- if a user selects a nonexistant database PEAR::DB threw a
- "no database selected" error instead of "no such database".
- This is fixed as well.
-
- I added two new constants to DB.php and a simple case construct to
- DB/mysql.php which can be easily extended to achive the above. I
- hope this is ok.
- Thanks to Till Gerken for mentioning this.
<changelog@php.net> [Tue, 12 Feb 2002 17:28:41 +0000 (17:28 +0000)]
Adding automagically updated ChangeLog.
Andrei Zmievski [Tue, 12 Feb 2002 17:20:56 +0000 (17:20 +0000)]
Fix-up.
Sascha Schumann [Tue, 12 Feb 2002 11:00:15 +0000 (11:00 +0000)]
Irix defines AF_INET6, but lacks IPv6 support, including
struct sockaddr_in6.
Yasuo Ohgaki [Tue, 12 Feb 2002 10:01:08 +0000 (10:01 +0000)]
Initialize automatic persistent connection reset flag
Andrei Zmievski [Tue, 12 Feb 2002 03:15:27 +0000 (03:15 +0000)]
Fix a long-standing infelicity that resulted in extra regex information
not being passed to PCRE functions.
Andrei Zmievski [Tue, 12 Feb 2002 03:00:05 +0000 (03:00 +0000)]
Expose pcre_get_compiled_regex as an API function.