foobar
5fdc09fb36
@- Fixed bug in imap_compose_mail() which caused crashes. (Jani)
...
# This one was only partly ported from php3. As some user pointed it out,
# it was working in 3.0.x. But this needs further hacking. Some error
# handlers, at least. Fixes bugs #3337 and #5084 .
2000-07-29 18:45:06 +00:00
Thies C. Arntzen
51fc3dede2
@- Fix reading of IPTC via GetImageInfo() for certain JPEG files. (Thies)
2000-07-29 15:29:35 +00:00
Rasmus Lerdorf
56326195a4
Add a couple of notes to the INSTALL file to hopefully cut down on a
...
couple of frequently asked questions.
2000-07-29 15:02:23 +00:00
Zeev Suraski
52ff887db5
Made ob_start() and friends reentrant. It's now possible to implement this
...
long-requested functionality, now that output buffering is re-entrant:
function eval_ret($code)
{
ob_start();
eval($code);
$retval = ob_get_contents();
ob_end_clean();
return $retval;
}
2000-07-29 14:46:09 +00:00
Zeev Suraski
d8a4278ab4
- Update .dsp's
...
- Make non ZTS Win32 build again
2000-07-29 10:48:57 +00:00
Zeev Suraski
735a0d148e
Fix filename issues
2000-07-29 10:44:13 +00:00
Jouni Ahto
3d1b363967
Fix #5817 and really, really check what gets passed further...
2000-07-29 06:07:26 +00:00
Jouni Ahto
ecb7b4d271
Removed an extra tab, it caused problems for Digital Unix' poor native make...
2000-07-29 04:45:38 +00:00
Jouni Ahto
d88fe953ae
This should fix #5826 .
2000-07-29 04:24:11 +00:00
foobar
90c1689cf0
Just cleaning up.
2000-07-29 03:59:05 +00:00
6496e39b53
ChangeLog update
2000-07-29 01:09:15 +00:00
7f41a6c77c
NEWS update
2000-07-29 01:09:07 +00:00
foobar
7c84d6a082
Fixes bug which caused crash, if result_entry wasn't valid.
2000-07-28 22:39:22 +00:00
foobar
9f25b9c1f7
# Oops..where did those creep in? =(
2000-07-28 21:48:16 +00:00
foobar
40b89f34fb
@- Made ldap_add(), ldap_modify(), ldap_mod_add(), ldap_mod_replace()
...
@ binary-safe. Original patch: Terrence Miao <terrence_miao@email.com > (Jani)
#Thanks go to Terrence for making a patch correcting this bug in php3.0.12...
#A patch, which somehow wasn't included at all in it?-) I wonder why..?
2000-07-28 21:31:02 +00:00
Stig Bakken
4575fe5a7c
* PEAR now stands for "PHP Extension and Application Repository"
2000-07-28 21:05:00 +00:00
Chuck Hagenbuch
44a46d2a75
Moving the Socket class to Net/Socket.php, and basing it on code that Stig
...
wrote, with a few extra utility functions from my old class.
Stig, I mucked with the constructor a bit since it didn't quite make sense
exactly as it was - does it still do what was intended?
Also, are the emacs folding things (// {{{ functionname() ...) a PEAR
standard? How do they fit with the javadoc?
2000-07-28 15:27:18 +00:00
Hartmut Holzgraefe
1a7f851985
added '-l' option to command line / CGI version for 'syntax check only'
...
plus a little cleanup and rearranging in command line option parsing
@ CGI aka. command line version has now an option '-l' for syntax check
@ without execution (Hartmut)
2000-07-28 15:21:20 +00:00
Hartmut Holzgraefe
a525d022ce
should fix bug #5729
...
# I'm unable to test, as I still haven't got working Windows
# Please check that it compiles.
2000-07-28 12:21:44 +00:00
Stanislav Malyshev
2c95b113bd
Make define return false and issue E_NOTICE when trying to redefine constant
...
@- Make define return false and issue E_NOTICE when trying to redefine constant (Stas)
2000-07-28 09:44:46 +00:00
5c2c547d9e
ChangeLog update
2000-07-28 01:09:11 +00:00
53738cf408
NEWS update
2000-07-28 01:09:08 +00:00
foobar
c8b8281e22
@- Fixed bug in ldap_get_values_len() which makes it NULL-safe. (Jani)
...
@ Bug-report and fix submitted by Michel Alexeline <alexel@dr15.cnrs.fr >
# Plus I added missing ldap_value_free_len().
2000-07-28 00:09:33 +00:00
Sam Ruby
ed2b68a9c3
Fix bug 5619 - explain how to add to the classpath on Win32 machines.
...
Reported by: "Carl S. in 't Veld" <cveld@bigfoot.com >
2000-07-27 18:57:23 +00:00
Rasmus Lerdorf
3bca4e220d
Make ext_skel create a Makefile.in set up to handle shared extension
...
support automatically
@ Make ext_skel create a Makefile.in set up to handle shared extension
@ support automatically (Rasmus)
2000-07-27 17:56:02 +00:00
James L. Pine
96a35a3eea
added DB/oci8.php to PEAR_FILES
2000-07-27 17:18:26 +00:00
Jon Parise
021ad113ef
Reworded some of the php_error messages for grammar and clarity.
...
(For example, settled on "cannot" instead of "can't" in all case)
2000-07-27 16:43:38 +00:00
Andi Gutmans
290525fdcd
Always store full filename as compiled file name
2000-07-27 15:36:54 +00:00
Stanislav Malyshev
29585f985e
Add news of recent fixes
2000-07-27 14:34:40 +00:00
Stanislav Malyshev
ba8d49dce7
Fix realpath not to die on non-existing files (bug #5790 )
...
Thanks to china@thewrittenword.com
2000-07-27 13:48:50 +00:00
Chuck Hagenbuch
5ec120366c
Add a Socket class. If this should be somewhere other than top-level, just
...
let me know - none of the existing subdirectories made sense to me, and I
didn't want to add a new one just for this.
2000-07-27 13:47:45 +00:00
Stanislav Malyshev
f24c8c6f4b
Fix safe mode handling by touch
2000-07-27 13:47:03 +00:00
Stanislav Malyshev
9aa854dc6e
Fix memory leak in touch when safety check fails
2000-07-27 13:28:21 +00:00
7afdb75437
ChangeLog update
2000-07-27 01:09:24 +00:00
fde20cea27
NEWS update
2000-07-27 01:09:16 +00:00
Kristian Köhntopp
cd2929aead
Access to global variable safe_mode fixed.
2000-07-26 21:38:21 +00:00
Vlad Krupin
3d3d238021
Changed syntax of pspell_new() (one more parameter - mode)
...
pspell_new() parameters that are empty ("") are now ignored
Removed pspell_mode() and pspell_runtogether() - their
functionality moved to pspell_new() because the ability
to dynamically change those settings is not in ISPELL, and
is likely do disappear from ASPELL, according to ASPELL
author.
Created a new constant - PSPELL_RUN_TOGETHER for pspell_new()
fixed a bug in pspell_new() that caused non-English dictionaries
to be ignored
removed a bogus line from pspell_new() that could result in
a memory leak
2000-07-26 21:32:29 +00:00
Kristian Köhntopp
102156298a
Added seteuid and setegid functions on request by max@valkyrie.sscf.ucsb.edu.
...
Also fixed the function detection for the HAVE_ functions.
2000-07-26 21:25:01 +00:00
Vlad Krupin
f1f91467fa
Removed pspell_mode() and pspell_runtogether()
2000-07-26 21:24:17 +00:00
Rasmus Lerdorf
b480b8dace
Fix symbol clash which caused a DSO problem on OpenBSD
...
@ Fix symbol clash which caused a DSO problem on OpenBSD (Rob Black and
@ anil@recoil.org )
2000-07-26 20:39:59 +00:00
Zeev Suraski
a30cde3de5
Fix a possible issue with runtime inheritence under fairly rare circumstance
...
and optimize a tiny bit
2000-07-26 18:23:30 +00:00
Sascha Schumann
08f7586031
Get rid of unnecessary preprocessor constructs.
2000-07-26 16:42:04 +00:00
Sascha Schumann
30472a1cc1
Use the lcg as another entropy source for seeding the PRNG when creating
...
a salt for crypt().
2000-07-26 16:35:32 +00:00
Sascha Schumann
2c42094494
Clean up the mess WRT rebuilding a limited set of files.
...
Earlier changes were based upon a wrong assumption (that CONFIG_FILES
could be relied upon).
2000-07-26 14:53:54 +00:00
Egon Schmid
e4b7e9e916
Protos fixed.
2000-07-26 11:43:01 +00:00
Joey Smith
017a843f0a
OK, got ahead of myself. Go back to where we started this morning.
2000-07-26 11:33:56 +00:00
Stanislav Malyshev
1373a16280
Add strncasecmp function
...
@ Added strncasecmp function (Andi)
2000-07-26 11:32:15 +00:00
Egon Schmid
9bb4011d06
Proto fixed.
2000-07-26 11:28:14 +00:00
Stanislav Malyshev
79527dd539
Make proper object initialization
2000-07-26 11:21:03 +00:00
Joey Smith
4e3f7a44da
OK, the fastgen stuff should be working OK, and normal configure should, too.
...
There is an annoying warning being generated due to null 1st arg to AC_OUTPUT,
but I don't know what to do a/b that.
2000-07-26 11:04:07 +00:00