Sebastian Bergmann
51a8449782
Add 4.1.2 NEWS entries to HEAD.
2002-02-27 09:30:40 +00:00
Sebastian Bergmann
e3b86cb645
URLEncoder.encode(string) is deprecated in the Java 2 SDK 1.4.
2002-02-27 07:29:33 +00:00
71139b307d
ChangeLog update
2002-02-27 01:33:13 +00:00
Andi Gutmans
c456da514c
- Hopefully fix the shutdown_memory_manager() stuff. Part of my previous
...
- patch seems to have gotten lost
2002-02-26 19:38:41 +00:00
Sebastian Bergmann
1b32da412d
TSRM Cleanup.
2002-02-26 19:31:21 +00:00
Andi Gutmans
7df1601239
- MFZE1
2002-02-26 19:17:26 +00:00
Andi Gutmans
a306665717
- Pass shutdown_memory_manager the TSRMLS context.
2002-02-26 18:59:27 +00:00
Dan Kalowsky
a4113ee734
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.
2002-02-26 15:33:54 +00:00
Edin Kadribasic
0bbc3c3a4c
Allow use of dl() when CLI is compiled with ZTS (bug #15717 ).
2002-02-26 11:00:20 +00:00
8774cc2dfa
ChangeLog update
2002-02-26 01:27:36 +00:00
jim winstead
63669c6a64
make it more clear that --with-apache and --with-apxs only work with apache 1.x.
2002-02-25 18:27:13 +00:00
b6b4b27988
NEWS update
2002-02-25 01:24:04 +00:00
6697e72433
ChangeLog update
2002-02-25 01:22:15 +00:00
Derick Rethans
b5a0fd24a1
- Fix the fix.. no need to escape " in single quotes
2002-02-24 14:07:10 +00:00
Derick Rethans
a4946ca375
- Add slashes around string output
2002-02-24 13:26:43 +00:00
Derick Rethans
8f0eb8cd04
- Update with XP (Thanx to Jan for the patch)
2002-02-24 13:01:10 +00:00
Stig Bakken
4a2e3c4a20
* fix broken dtd
...
# Tomas, there is no way to do what you want in the DTD without switching
# from XML to SGML. Sorry :-)
2002-02-24 10:45:28 +00:00
Sebastian Bergmann
dd95705ceb
Make phpinfo() look nicer.
2002-02-24 07:54:04 +00:00
292d9deb18
ChangeLog update
2002-02-24 01:21:33 +00:00
Markus Fischer
b68e5f2ec9
- Fix info output (Peter Neuman <neuman_peter@hotmail.com>).
2002-02-23 22:46:19 +00:00
Tomas V.V.Cox
3e4235b29a
DTD corrections (make it require minimal data for installer)
2002-02-23 21:21:18 +00:00
Stig Bakken
3ea5f3343b
* started implementing new "cross-environment" command API
...
# work in progress, not tested at all yet!
2002-02-23 15:32:36 +00:00
Holger Zimmermann
46acc391f0
Fixed functionality to read in server variables.
2002-02-23 15:17:00 +00:00
Tomas V.V.Cox
2833e8467c
Point readers to pear web
2002-02-23 13:47:16 +00:00
Tomas V.V.Cox
40c5f9afbc
outdated TODO not needed for the moment
2002-02-23 13:44:52 +00:00
Rui Hirokawa
8cfa80d082
fixed configure error with freetype1.
2002-02-23 01:36:55 +00:00
743fa79afe
ChangeLog update
2002-02-23 01:24:50 +00:00
Rui Hirokawa
07a08288a1
fixed a comment and default output encoding changed to pass.
2002-02-23 00:04:20 +00:00
Rui Hirokawa
acf08a9015
php.h included.
2002-02-23 00:00:15 +00:00
Vincent Blavet
508b9eff57
* 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
2002-02-22 21:57:04 +00:00
Frank M. Kromann
db63c9e291
Return true on update success.
2002-02-22 19:03:11 +00:00
Yasuo Ohgaki
b9d158c458
Fix crash bug 15607
2002-02-22 11:39:23 +00:00
8ca013f2ae
ChangeLog update
2002-02-22 01:29:52 +00:00
Sebastian Bergmann
6a59c7fcd3
Maintain ZEND_CHANGES to account for the addition of private member variables.
2002-02-21 13:10:31 +00:00
Andi Gutmans
00e90f2ff3
- 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();
?>
2002-02-21 11:50:44 +00:00
Yasuo Ohgaki
15daf99288
Added fmod() function
...
# Is there any reason that math.c does not use errno?
2002-02-21 11:44:41 +00:00
Sebastian Bergmann
be1b9927e5
Add aggregation to Win32 build.
2002-02-21 07:00:15 +00:00
Andrei Zmievski
513e598d1e
Adding object aggregation capability along with tests.
2002-02-21 03:32:42 +00:00
Sean Bright
444d3a6150
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
2002-02-21 02:12:37 +00:00
04252a9618
ChangeLog update
2002-02-21 01:43:18 +00:00
Christian Stocker
94d06d34e0
"o|a|b" is not valid ZE code. changed to "o|ab"
2002-02-20 23:35:20 +00:00
Vincent Blavet
04db776e71
Config variables must be set between "" while using pear.bat windows script
2002-02-20 22:39:16 +00:00
Vincent Blavet
16c5edd86f
* Correct bug while using windows dir separator. It is now supported
2002-02-20 22:15:28 +00:00
Rasmus Lerdorf
229d207a58
Split CRC32 table out into a header file so other code can use it
2002-02-20 18:18:39 +00:00
Derick Rethans
8b7b813ebc
- Fix for bug #15628 (for real now :)
2002-02-20 15:53:25 +00:00
Derick Rethans
9d6c7626da
- Reformatting
2002-02-20 10:41:18 +00:00
Derick Rethans
cddd25661f
- Fix for bug #15638
2002-02-20 07:24:53 +00:00
53f976cf83
ChangeLog update
2002-02-20 01:19:43 +00:00
David Hedbor
aecccb16e9
Fixed environment hashing again.
2002-02-19 20:46:29 +00:00
Derick Rethans
7bd5199c54
- Fix removal of #line lines
2002-02-19 15:58:31 +00:00