- The migration of CyberCash merchants to the VeriSign Payflow service is
- scheduled for completion in mid-February. At that time we will begin the
- shutdown of the CyberCash payment gateway and all related systems. This
- final shutdown process requires us to change DNS for the VeriSign Payflow
- service. The DNS change is scheduled at approximately 6PM ET on February 28,
- 2002.
@- removed ext/cybercash (jan)
Fix object write handler behaviour:
* If this value is already set to given value, don't try to set it again.
* If we have reference, we should not move it.
* If we are assigning referenced variable, we should separate it.
# Hope this covers all... Sigh...
Zak Greant [Wed, 9 Oct 2002 12:33:40 +0000 (12:33 +0000)]
Possible fix for bug #19529 (thanks Rasmus, Arjen and Monty)
Major changes to _restore_connection_defaults
- added code block to finds and releases the active mysql result (if any)
- this should prevent the 'Commands out of sync' error that would be
raised when a query is made when unfreed results exist
Minor changes to _restore_connection_defaults
- replaced calls to mysql_real_query with mysql_query
- we probably should not be using mysql_real_query without checking to
see if we have a version that supports the function.
- given that we control the query strings here and do not need to
worry about binary safety, I am using mysql_query instead
- see the bug report for further discussion
Markus Fischer [Wed, 9 Oct 2002 09:20:46 +0000 (09:20 +0000)]
- Fix protos (resource instead of int for stream_id, fix some return protos,
consistent usage of options instead of flags).
- Make imap_ping,imap_setquota and imap_setacl return a real (bool) now.
Zak Greant [Wed, 9 Oct 2002 07:34:48 +0000 (07:34 +0000)]
Set default value for mysql.connect_timeout to -1. This setting matches the setting in php.ini-dist and ensures that the default behavior is to leave connect_timeout alone.
Andrey Hristov [Tue, 8 Oct 2002 09:52:59 +0000 (09:52 +0000)]
Now str_shuffle() has the randomization characteristics of shuffle().
str_shuffle() won't return anymore the randomized string and thus will be
consistent with shuffle(). Since this function is new to 4.3.0 no BC
problems.
#Thanks to Adam Trachtenberg for providing good example to check the
#permuations distribution.
Stig Bakken [Tue, 8 Oct 2002 01:04:52 +0000 (01:04 +0000)]
* make these variables configurable from environment on Windows:
PEAR_INSTALLDIR PHP_BINDIR PHP_CONFIG_FILE_PATH
PHP_CONFIG_FILE_SCAN_DIR PHP_DATADIR PHP_EXTENSION_DIR
PHP_INCLUDE_PATH PHP_LIBDIR PHP_LOCALSTATEDIR
PHP_PREFIX PHP_SYSCONFDIR
Andi Gutmans [Mon, 7 Oct 2002 21:46:44 +0000 (21:46 +0000)]
- Require $this-> when calling a methods. This whole automatic lookup
- first in the class and then in the global scope is confusing, slow and
- not quite BC compatible.
Lots of clean-up for upcoming mbstring merging event.
Added mb_regex_set_options().
The Options parameters of various mbregex functions are now deprecated.
@- Added mb_regex_set_options(). The Options parameters of
@ various mbregex functions are now deprecated. (Moriyoshi).
Rasmus Lerdorf [Mon, 7 Oct 2002 16:46:38 +0000 (16:46 +0000)]
readdir() was returning NULL instead of FALSE when used on an invalid
directory handle. If someone forgot to check (as someone here did) that
the opendir() succeeded, and then followed the documented usage by checking
readdir()!==FALSE things would go awry. The ZEND_FETCH_RESOURCE macro
explicitly does a RETURN_NULL on failure which is not what we want in this
case, so work around it. No need to change it for the OO case since the
object is not created if the opendir fails.