foobar [Thu, 10 Oct 2002 04:28:15 +0000 (04:28 +0000)]
- Fix the text alignment to be about same in any browser.
# Please test this, it's now same in NS 4.78 (linux), IE 5.5 and
# Mozilla 1.2a (win32). (I don't have any other browsers installed now)
foobar [Thu, 10 Oct 2002 02:23:24 +0000 (02:23 +0000)]
- Cleaned up some code and used the proper macros for ZTS stuff.
- Fixed a memleak.
- Fixed a bug in pfpro_process() when response contains only 2 entries.
(random garbage added in the end of the value + key sometimes wrong)
# Sorry for including the ws fixes..I got carried away when fixing that bug
- 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.