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
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
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
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
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
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
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
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
Egon Schmid
e4b7e9e916
Protos fixed.
2000-07-26 11:43:01 +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
foobar
123d745249
@- Added new function: ldap_compare(). (Jani)
...
# Documentation is coming right after this.
2000-07-26 11:01:44 +00:00
Sterling Hughes
56b7b7a8a9
* EXTENSIONS -- update status on CURL & SWF
...
* NEWS --
1. Change wording for the ibase and sybase DB announcement.
2. Remove second pfpro announcement, if pfpro is being released with 4.0.2
entries about new features before 4.0.2 shouldn't be in there.
3. Joey, that entry just doesn't seem incredibly relevant to the NEWS file,
I'll backport it if you want (or add a new entry).
* ext/standard/info.c -- Add a CREDIT_LINE() for CURL.
2000-07-26 05:41:38 +00:00
Sterling Hughes
2aff369398
Add CURLOPT_TRANSFERTEXT option to curl_setopt().
2000-07-26 05:25:37 +00:00
Sascha Schumann
79186d4fe9
Read from /dev/u?random until the buffer is filled.
...
Submitted by: Derick Rethans <d.rethans@jdimedia.nl >
2000-07-25 22:17:20 +00:00
Kristian Köhntopp
19687ea1ed
Trivial change to add access to CURL version information for
...
user programs in order to have them react appropriately.
2000-07-25 22:15:26 +00:00
Vlad Krupin
b3305dab64
added several functions for manipulating wordlists:
...
pspell_store_replacement()
pspell_add_to_personal()
pspell_add_to_session()
pspell_clear_session()
2000-07-25 22:09:52 +00:00
Vlad Krupin
29ab69a767
- added several functions for manipulating wordlists - pspell_store_replacement(), pspell_add_to_personal(), pspell_add_to_session(), pspell_clear_session().
...
- fixed a few confusing typos in comments
2000-07-25 22:06:38 +00:00
Stanislav Malyshev
104b4f38df
Fix more bugs in browscap
...
# now it shoudl work, but leaks like hell, so don't use it yet
2000-07-25 18:50:02 +00:00
foobar
e5f6dcb9c2
@- Fixed a bug in ldap_get_entries() and ldap_get_attributes. (Jani)
...
Fixes bugs #5433 and #5603 .
2000-07-25 15:34:28 +00:00
Stanislav Malyshev
85eb0bb29d
Report configuration path that is really used, not that is compiled in
...
# it does matter when using -c option
2000-07-25 10:54:07 +00:00
Hartmut Holzgraefe
772c4026bb
htmlspecialchars and htmlentities will now
...
encode single quotes to '
(due to feature request in BUG ID#5254)
2000-07-25 10:18:06 +00:00
Stanislav Malyshev
005d4c4deb
Default section name should be uppercase, I guess
2000-07-25 08:09:00 +00:00
Sterling Hughes
c9167fa9df
remove comments for consistency.
2000-07-25 00:29:52 +00:00
Sterling Hughes
cb44d1b30a
1. Move from experimental -> production
...
2. Thread safety
3. Set some initial options
4. Redo the placement of some functions and options.
2000-07-24 20:00:00 +00:00
Joey Smith
9d6d8bf1fa
@- Fix #4591 . Register the appname as PHP 4.0, not 3.0
...
@ Credit to andrew@digitalpulp.com . (Joey)
sybase.globals was still using PHP 3.0 as the appname.
2000-07-24 19:12:32 +00:00
Dan Kalowsky
f6d891674d
Patched to work for Solid/Linux libc5 and glibc2 without the need for renaming the lib files, thanks to Kevin Way... fixed typo from GLIHC to GLIBC
2000-07-24 18:01:42 +00:00
John Donagher
d805076ac2
# Added code to pfpro.c and php_pfpro.h to parse defaults out of php.ini
...
@- For the pfpro extension: defaulthost, defaultport, defaulttimeout, and
@ all of the default proxy settings can now be defined in php.ini
2000-07-24 17:57:05 +00:00
Dan Kalowsky
ebe6dbbbae
Patched to work for Solid/Linux libc5 and glibc2 without the need for renaming the lib files, thanks to Kevin Way
2000-07-24 14:21:18 +00:00
David Croft
0836e10a15
various version 2.0 and 2.01 licenses -> 2.02
2000-07-24 05:41:02 +00:00
David Croft
83513d9580
Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.
...
Added a few RCS $Id$ tags.
# Note: I have avoided changing any .h files if the corresponding .c file
# had not already been changed as I am not sure if there are any legal
# issues here. So some extensions still have PHP 3 headers.
2000-07-24 01:40:02 +00:00
foobar
428eb46f78
It's better not touch those ldap->ld_* when they aren't given as parameters.
...
(Now using -1 the parameters not wanted can be omitted)
# Plus some source-polishing.
2000-07-23 21:32:02 +00:00
Thies C. Arntzen
9752d1a089
(getimagesize) fix FORCE_REF.
2000-07-23 16:49:42 +00:00
Stanislav Malyshev
7c296bd9cc
Add another check for broken browscap object
...
# I do not know how it could get broken, but just in case...
2000-07-23 11:32:18 +00:00
Stanislav Malyshev
a172147a91
Try to fix some get_browser crashes and clean it up
...
# Probably needs more work, just what I could see immediately
2000-07-23 11:11:35 +00:00
Joey Smith
a44137974b
Setting "compatibility" parameter requires having a PDF structure that
...
has NOT had PDF_open_*() called on it, according to the documentation.
There is not currently any way to obtain such from user-land in PHP.
@ Catch users trying to set "compatibility" parameter, which is not
@ supported from user-land.
#
# Not sure this is the best way to do this...
# Uwe, could you please double check this?
2000-07-23 08:31:13 +00:00
Sterling Hughes
8aadb68db1
@ Fixed dbase_add_record. (Sterling)
...
Fixed dbase_add_record
2000-07-23 03:45:24 +00:00
Sam Ruby
f4e94a5030
Complete the work mapping arrays and hashtables
2000-07-22 20:36:11 +00:00
Sam Ruby
668af98d75
Fix regression in passing strings as parameters
2000-07-22 18:09:28 +00:00