Andrei Zmievski
441c583a2c
Converted extract() to use smart_str for variable name manipulation. This
...
sped it up a bit.
2002-02-01 20:17:32 +00:00
Adam Dickmeiss
f8d533d79d
Fixes in MARC decoder (base adress, DANmarc case).
2002-02-01 17:56:19 +00:00
Thies C. Arntzen
4526dd2078
remove some crap
2002-02-01 14:02:49 +00:00
Derick Rethans
32e9ea6c64
- Fix for bug 14899 (patch by Sander Roobol <sander@php.net>)
2002-02-01 08:53:47 +00:00
Yasuo Ohgaki
53d349a3a6
Fixed bug with encodings that has 0 byte in strings. Patch by <itai@siftology.com>
...
Fixed possible problem with encodings that a char can be larger than
4 bytes.
2002-02-01 08:32:04 +00:00
Boian Bonev
8ad5009b22
fix comment
2002-01-31 17:02:48 +00:00
Derick Rethans
98e8a7ba08
- Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL)
2002-01-31 10:21:24 +00:00
Derick Rethans
d26afcf366
- Fix for openssl_pkcs7_sign segfaults
...
(patch by Christian Stocker <chregu@php.net>)
2002-01-31 09:57:28 +00:00
Dan Kalowsky
860e2e97ee
Fix for bug #14803
2002-01-30 21:54:54 +00:00
Thies C. Arntzen
82a9fc746e
enable "user-interrupts"
2002-01-30 07:41:04 +00:00
Jon Parise
9aba9071b6
These are now defined in zend_config.w32.h.
2002-01-28 16:06:27 +00:00
jim winstead
95407d3202
testing checkin
2002-01-28 01:43:43 +00:00
Jon Parise
e40e7a669a
zend_isinf() is already defined in Zend/zend_config.w32.h for Win32.
2002-01-27 18:19:18 +00:00
fabrice aeschbacher
ece15242e7
add ibase_add_user(), ibase_modify_user(), ibase_delete_use()
2002-01-27 15:31:15 +00:00
Jon Parise
f174bbc711
Use the zend_* versions of finite(), isinf(), and isnan(), as defined
...
in php_config.h. Redefine the zend_* versions in the case of Win32.
This fixes the build on systems that don't provide a native version of,
say, isinf() (e.g. Solaris).
2002-01-27 07:41:20 +00:00
Jon Parise
ea089d09ae
Add a note that this statement will never be reached.
2002-01-27 07:23:21 +00:00
Jon Parise
d299bdc5d9
Add a comment indicating that this return statement will never be reached.
...
# Perhaps it should just be removed?
2002-01-27 07:15:07 +00:00
Jon Parise
539114339c
Use socklen_t (instead of int) where appropriate.
2002-01-27 07:06:09 +00:00
Jon Parise
d7523c883b
Because php_network.h includes <sys/socket.h>, it must be included after
...
_XPG4_2 is defined.
This fixes the build under Solaris 8.
2002-01-27 06:55:10 +00:00
Sterling Hughes
0d59ff42d4
don't throw fatal errors, throw E_WARNING instead.
2002-01-27 06:18:05 +00:00
Sterling Hughes
094873c6d2
hopefully fix --with-openssl issues
2002-01-27 06:11:50 +00:00
Yasuo Ohgaki
93cb481634
We need mm file for each user.
...
# GCI/CLI SAPI need this. It might be better to disable mm save handler
# for CGI/CLI, though.
2002-01-25 20:59:24 +00:00
Derick Rethans
edb0118d96
- Fix for bug #15227 : Compiling the CGI binary with xmlrpc fails to
...
build/link expat
2002-01-25 19:56:48 +00:00
Derick Rethans
33b66a224b
- Fixed highlight_* (make it more robust)
...
#- Thx Mr S for noticing this.
2002-01-25 15:43:58 +00:00
Hartmut Holzgraefe
58749ec3a4
no longer experimental
2002-01-25 14:01:41 +00:00
Derick Rethans
96a9eba020
- Added optional parameter to highlight_string and highlight_file which
...
makes these functions return a highlighted string instead of dumping
to standard output. (Derick)
@- Added optional parameter to highlight_string and highlight_file which
@ makes these functions return a highlighted string instead of dumping
@ to standard output. (Derick)
2002-01-25 11:27:47 +00:00
Rasmus Lerdorf
0d139d3c27
(extraxt) add EXTR_IF_EXISTS and EXTR_PREFIX_IF_EXISTS flags
...
@- Added EXTR_IF_EXISTS and EXTR_PREFIX_IF_EXISTS flags to extract()
@ EXTR_IF_EXISTS only extracts a variable if it already exists
@ EXTR_PREFIX_IF_EXISTS only extracts the variable if it exists and
@ then it prepends the prefix to it. ie. if $PATH exists then
@ extract($_ENV,EXTR_PREFIX_IF_EXISTS,'e') would result in $e_PATH
@ This lets you do $a = $b = $c = true; extract($_REQUEST,EXTR_IF_EXISTS);
@ and you only get the global request variables you have defined imported
@ into your symbol table. (Rasmus)
2002-01-25 09:01:02 +00:00
Derick Rethans
22b1b4547f
- Fix for bug #14934 : type property not set in comment nodes (domxml)
2002-01-25 07:40:38 +00:00
Yasuo Ohgaki
d9692f7896
Add sapi postfix for mm save path.
...
cli/cgi would not complain about mm save handler with this.
# I'm really annoyed by mm save path problem...
2002-01-25 04:36:26 +00:00
Yasuo Ohgaki
1ea87faeb1
Added "auto_reset_presistent" ini entry.
2002-01-25 00:43:50 +00:00
Marko Karppinen
449b53e34a
Ignore ordinal suffixes on numbers (bug #15210 )
2002-01-24 22:24:58 +00:00
Andrei Zmievski
c330a4f9ce
Revert back to using <char> element for newlines.
2002-01-24 16:18:50 +00:00
Yasuo Ohgaki
c815a20aee
Revert last 2 commit. Instead, make php_pgsql_do_connect() to catch
...
broken connection always.
# I think this is better than check&reset connection when query
# functions are called.
2002-01-24 09:27:43 +00:00
Yasuo Ohgaki
448dbd72cd
Add a little more fault tolerance for pg_host, pg_tty and more.
2002-01-24 06:40:10 +00:00
Yasuo Ohgaki
ddee00da0e
No more httpd restart is required when PostgreSQL is rebooted.
...
# Works for pg_query()/pg_send_query()
2002-01-24 06:20:33 +00:00
Frank M. Kromann
2a02754b52
Fixing spelling error in FrontBase section
...
Changed som int to unsigned int to remove compiler warnings
2002-01-23 17:48:31 +00:00
Jaroslaw Kolakowski
4674123cca
Simplified domxml_substitute_entities_default() function
2002-01-22 18:47:06 +00:00
Sterling Hughes
1a36eb5574
just init CURL_GLOBAL_SSL
2002-01-22 17:06:16 +00:00
Christian Stocker
deb652deed
Getting rid of some compile warnings (thanks to markus for pointing me in the right direction :) )
2002-01-22 09:52:56 +00:00
Sean Bright
a38bfb424e
Fix for bug #15130 . Way too much effort for this bug, but cleaned up code
...
a bit, use zend_parse_parameters(), etc, etc. We only look for extensions
in the basename, not the full path.
2002-01-22 03:35:23 +00:00
Jaroslaw Kolakowski
b7f0e6bd1c
Added domxml_substitute_entities_default() function
2002-01-21 23:21:32 +00:00
Chris Jarecki
5f153ca929
- fixed bug caused by libxml2 in xpath_register_ns()
...
- registered namespaces are now persistent
2002-01-21 19:12:00 +00:00
Dan Kalowsky
31cd8e0b75
this closes off a number of ODBC bugs.
...
# this is a bit hack-ish in it's functionality. The proper answer (allowing
# users to set their cursor type) has bugs with some tests cases at this time.
# But this is being done to just get ODBC back into working order.
2002-01-21 14:11:17 +00:00
Yasuo Ohgaki
ae64c5cec3
Fixed typo and proto
2002-01-21 00:36:22 +00:00
Markus Fischer
fe6e7058ee
- Fix crash with invalid localtime on Win32 systems.
2002-01-20 20:16:54 +00:00
Hartmut Holzgraefe
ce8c6a04b6
cut&paste errors in protos fixed
2002-01-20 14:45:30 +00:00
Hartmut Holzgraefe
b0bffb022a
proto fix
2002-01-20 14:40:59 +00:00
Sean Bright
16344cc34e
Forgot to remove the return from a void function
2002-01-20 05:02:52 +00:00
Sean Bright
cbedeea53c
These PHP3_* macros aren't defined in the code, so these haven't been doing
...
anything for some time now (at least since 4.0 was released). So let's go
ahead and remove those.
# If I missed something obvious, let me know and I will revert the patch.
2002-01-20 04:55:40 +00:00
Edin Kadribasic
f5790b0a7c
Modified the build system to make certain extensions (pcntl, ncurses,
...
pcntl) only with cgi/cli sapi's. This was done by adding 3rd optional
parameter to PHP_EXTENSION macro which should be set to "cli" if
the extension only makes sense for that class of api's.
2002-01-20 02:30:18 +00:00