]> granicus.if.org Git - php/log
php
20 years agotest for local_infile_handler
Georg Richter [Wed, 25 Aug 2004 13:58:03 +0000 (13:58 +0000)]
test for local_infile_handler

20 years agochanged local_infile_handler:
Georg Richter [Wed, 25 Aug 2004 13:57:35 +0000 (13:57 +0000)]
changed local_infile_handler:
  mysql client lib now uses php_local_infile functions by default, which allows
  to use php_fopen_wrapper: e.g. LOAD DATA LOCAL INFILE 'http://foo.com/bar.csv' ...

  mysql_set_local_infile_handler now only supports a callback function for read.

20 years agoif $doc->recover = true; set error_reporting to (old | E_WARNING)
Christian Stocker [Wed, 25 Aug 2004 08:27:07 +0000 (08:27 +0000)]
if $doc->recover = true; set error_reporting to (old | E_WARNING)
This way, you can't silence XML parse errors with the @ character

20 years agoNo short tags
Marcus Boerger [Wed, 25 Aug 2004 07:25:54 +0000 (07:25 +0000)]
No short tags

20 years ago- Those two are already in the NEWS for 5.0.2.
Derick Rethans [Wed, 25 Aug 2004 06:37:47 +0000 (06:37 +0000)]
- Those two are already in the NEWS for 5.0.2.

20 years ago- Improve wording
Andi Gutmans [Wed, 25 Aug 2004 01:06:18 +0000 (01:06 +0000)]
- Improve wording

20 years ago- MFB
Andi Gutmans [Wed, 25 Aug 2004 01:04:41 +0000 (01:04 +0000)]
- MFB

20 years ago- Add interface_exists() and differentiate between classes and interfaces
Andi Gutmans [Wed, 25 Aug 2004 00:41:43 +0000 (00:41 +0000)]
- Add interface_exists() and differentiate between classes and interfaces
  (Andrey Hristov)

20 years agoChangeLog update
<changelog@php.net> [Wed, 25 Aug 2004 00:33:08 +0000 (00:33 +0000)]
ChangeLog update

20 years agonew incompatibilities. maybe someone from the doc group will update the
Andrey Hristov [Tue, 24 Aug 2004 22:01:58 +0000 (22:01 +0000)]
new incompatibilities. maybe someone from the doc group will update the
migrating guide. also Derick may add new slides to his talk :)

20 years agoMFB: TSRM fix
Marcus Boerger [Tue, 24 Aug 2004 21:49:09 +0000 (21:49 +0000)]
MFB: TSRM fix

20 years agoAdd new test
Marcus Boerger [Tue, 24 Aug 2004 21:35:46 +0000 (21:35 +0000)]
Add new test

20 years agoMFB.
Andrei Zmievski [Tue, 24 Aug 2004 20:58:59 +0000 (20:58 +0000)]
MFB.

20 years ago- Add missing brackets
Marcus Boerger [Tue, 24 Aug 2004 18:47:18 +0000 (18:47 +0000)]
- Add missing brackets

20 years agoAdd fbsql_rows_fetched() - returns the total number of rows fetched.
Frank M. Kromann [Tue, 24 Aug 2004 17:59:01 +0000 (17:59 +0000)]
Add fbsql_rows_fetched() - returns the total number of rows fetched.
Fix a possible crash in fbsql_database() if the function was called before a connection was made.

20 years agoFixed bug #29821 (Fixed possible crashes in convert_uudecode() on invalid
Ilia Alshanetsky [Tue, 24 Aug 2004 15:25:48 +0000 (15:25 +0000)]
Fixed bug #29821 (Fixed possible crashes in convert_uudecode() on invalid
data).

20 years agofix segfault when object cloned
Rob Richards [Tue, 24 Aug 2004 13:33:11 +0000 (13:33 +0000)]
fix segfault when object cloned

20 years agoAdd support for the readline callback interface, allowing you to interleave
Wez Furlong [Tue, 24 Aug 2004 12:52:07 +0000 (12:52 +0000)]
Add support for the readline callback interface, allowing you to interleave
IO and user input.  Sample script:

<?php
dl("readline.so");

function handle_user_input($line)
{
   echo "You typed: '$line'\n";
   if ($line == 'exit')
      exit;
}

readline_callback_handler_install('type! > ', 'handle_user_input');

while (true) {
   $n = stream_select($r = array(STDIN), $w = null, $e = null, null);

   if ($n && in_array(STDIN, $r)) {
      readline_callback_read_char();
   }
}

20 years ago- No tabs here please
Derick Rethans [Tue, 24 Aug 2004 12:28:46 +0000 (12:28 +0000)]
- No tabs here please

20 years agouse dependent libs while probing for functions
Wez Furlong [Tue, 24 Aug 2004 12:06:37 +0000 (12:06 +0000)]
use dependent libs while probing for functions

20 years agoThis extension is no more experimental
Christian Stocker [Tue, 24 Aug 2004 11:50:26 +0000 (11:50 +0000)]
This extension is no more experimental

20 years ago- Fix typo
Andi Gutmans [Tue, 24 Aug 2004 01:04:57 +0000 (01:04 +0000)]
- Fix typo

20 years agoChangeLog update
<changelog@php.net> [Tue, 24 Aug 2004 00:36:07 +0000 (00:36 +0000)]
ChangeLog update

20 years ago- Drop unused variable
Marcus Boerger [Mon, 23 Aug 2004 20:58:48 +0000 (20:58 +0000)]
- Drop unused variable

20 years ago- Boost up __autoload() calls by caching the lookup
Marcus Boerger [Mon, 23 Aug 2004 20:57:40 +0000 (20:57 +0000)]
- Boost up __autoload() calls by caching the lookup

20 years ago- Improve wording
Andi Gutmans [Mon, 23 Aug 2004 20:19:37 +0000 (20:19 +0000)]
- Improve wording

20 years ago- NEWS
Andi Gutmans [Mon, 23 Aug 2004 20:18:10 +0000 (20:18 +0000)]
- NEWS

20 years ago- Improve performance of switch()
Andi Gutmans [Mon, 23 Aug 2004 20:16:35 +0000 (20:16 +0000)]
- Improve performance of switch()

20 years agoFixed possible crash inside dio_read().
Ilia Alshanetsky [Mon, 23 Aug 2004 17:27:33 +0000 (17:27 +0000)]
Fixed possible crash inside dio_read().

20 years agoFixed proto of headers_list().
Ilia Alshanetsky [Mon, 23 Aug 2004 16:58:11 +0000 (16:58 +0000)]
Fixed proto of headers_list().

20 years ago- MFB: Fixed Apache 2.0 SAPI build against Apache 2 HEAD. (Patch by Joe Orton)
Derick Rethans [Mon, 23 Aug 2004 09:01:27 +0000 (09:01 +0000)]
- MFB: Fixed Apache 2.0 SAPI build against Apache 2 HEAD. (Patch by Joe Orton)

20 years ago- Little changes.
Derick Rethans [Mon, 23 Aug 2004 09:01:08 +0000 (09:01 +0000)]
- Little changes.

20 years agoChangeLog update
<changelog@php.net> [Mon, 23 Aug 2004 00:34:43 +0000 (00:34 +0000)]
ChangeLog update

20 years agoUsing int when long should be used.
Ilia Alshanetsky [Sun, 22 Aug 2004 18:05:24 +0000 (18:05 +0000)]
Using int when long should be used.

20 years agoChangeLog update
<changelog@php.net> [Sun, 22 Aug 2004 00:33:22 +0000 (00:33 +0000)]
ChangeLog update

20 years ago- Fixed packet size setting
Timm Friebe [Sat, 21 Aug 2004 17:54:11 +0000 (17:54 +0000)]
- Fixed packet size setting
# Patch by Alex Kiesel

20 years agofix for bug 26737 : private & protected member variables not serialized
Andrey Hristov [Sat, 21 Aug 2004 13:49:19 +0000 (13:49 +0000)]
fix for bug 26737 : private & protected member variables not serialized
when user defined __sleep() is declared. Additionally E_NOTICE is
being thrown if __sleep() returns a non-existing member variable name

20 years agoFix win32 compilation. Missing uid_t and gid_t definitions.
Frank M. Kromann [Sat, 21 Aug 2004 03:09:45 +0000 (03:09 +0000)]
Fix win32 compilation. Missing uid_t and gid_t definitions.

20 years agoChangeLog update
<changelog@php.net> [Sat, 21 Aug 2004 00:33:39 +0000 (00:33 +0000)]
ChangeLog update

20 years agoBugfix#29777 Some compilers don't like // style comments
Sara Golemon [Sat, 21 Aug 2004 00:00:16 +0000 (00:00 +0000)]
Bugfix#29777 Some compilers don't like // style comments

20 years agoFix compile
Sara Golemon [Fri, 20 Aug 2004 23:53:59 +0000 (23:53 +0000)]
Fix compile

20 years agoAdjust magic path ordering.
Ilia Alshanetsky [Fri, 20 Aug 2004 15:11:49 +0000 (15:11 +0000)]
Adjust magic path ordering.

20 years agoMFB: Removed unneeded bits.
Ilia Alshanetsky [Fri, 20 Aug 2004 13:53:16 +0000 (13:53 +0000)]
MFB: Removed unneeded bits.

20 years agoAdded /usr/share/misc/file/magic to the possible magic paths (used by Debian)
Ilia Alshanetsky [Fri, 20 Aug 2004 13:48:19 +0000 (13:48 +0000)]
Added /usr/share/misc/file/magic to the possible magic paths (used by Debian)

20 years ago- Order and removed a bugfix which was already in 5.0.2/
Derick Rethans [Fri, 20 Aug 2004 06:14:42 +0000 (06:14 +0000)]
- Order and removed a bugfix which was already in 5.0.2/

20 years agoAdded more missing cURL options.
Ilia Alshanetsky [Fri, 20 Aug 2004 00:55:56 +0000 (00:55 +0000)]
Added more missing cURL options.

20 years agoChangeLog update
<changelog@php.net> [Fri, 20 Aug 2004 00:34:05 +0000 (00:34 +0000)]
ChangeLog update

20 years ago- Cleanup
Andi Gutmans [Thu, 19 Aug 2004 20:42:20 +0000 (20:42 +0000)]
- Cleanup

20 years ago- Second wave of garbage removal.
Andi Gutmans [Thu, 19 Aug 2004 20:29:04 +0000 (20:29 +0000)]
- Second wave of garbage removal.

20 years agoIf you send a post with a content-type header and then the next post without the...
Brian France [Thu, 19 Aug 2004 20:26:39 +0000 (20:26 +0000)]
If you send a post with a content-type header and then the next post without the content-type header, raw_post_data will not be set.  This is because SG(request_info).post_entry is set to the first requests function pointer which makes it follow the wrong code path.

20 years ago- Stop using garbage. Please let me know if you find any bugs resulting
Andi Gutmans [Thu, 19 Aug 2004 20:03:06 +0000 (20:03 +0000)]
- Stop using garbage. Please let me know if you find any bugs resulting
- of this patch (very likely). (Dmitry, Andi)

20 years agoJanify [tm]
Marcus Boerger [Thu, 19 Aug 2004 18:15:48 +0000 (18:15 +0000)]
Janify [tm]

20 years agoBFN
Antony Dovgal [Thu, 19 Aug 2004 15:22:17 +0000 (15:22 +0000)]
BFN

20 years agofix #29737 in the right way with performance in mind
Antony Dovgal [Thu, 19 Aug 2004 15:14:04 +0000 (15:14 +0000)]
fix #29737 in the right way with performance in mind

20 years agofix #29737 (ip2long should return -1 if IP is 255.255.255.255 and FALSE on error)
Antony Dovgal [Thu, 19 Aug 2004 13:59:29 +0000 (13:59 +0000)]
fix #29737 (ip2long should return -1 if IP is 255.255.255.255 and FALSE on error)

20 years agofix for bug #29657 xml_* functions throw non descriptive error, compared to php4
Christian Stocker [Thu, 19 Aug 2004 12:18:25 +0000 (12:18 +0000)]
fix for bug #29657 xml_* functions throw non descriptive error, compared to php4
fix for bug #29711 libxml and non iso-8859-1.
If no encoding specified, it defaults to UTF-8 now

20 years agoFix issue in test
Marcus Boerger [Thu, 19 Aug 2004 08:04:20 +0000 (08:04 +0000)]
Fix issue in test

20 years agoBFN + reorder
Marcus Boerger [Thu, 19 Aug 2004 07:45:24 +0000 (07:45 +0000)]
BFN + reorder

20 years ago- Implement #29728: Reflection API Feature: Default parameter value.
Marcus Boerger [Thu, 19 Aug 2004 07:42:02 +0000 (07:42 +0000)]
- Implement #29728: Reflection API Feature: Default parameter value.
  . ReflectionParameter::isDefaultValueAvailable()
  . ReflectionParameter::getDefaultValue()

20 years ago- Nedd to work on copy
Marcus Boerger [Thu, 19 Aug 2004 07:16:02 +0000 (07:16 +0000)]
- Nedd to work on copy

20 years agoChangeLog update
<changelog@php.net> [Thu, 19 Aug 2004 00:32:47 +0000 (00:32 +0000)]
ChangeLog update

20 years ago- Show default value of optional parameters of user defined functions.
Marcus Boerger [Wed, 18 Aug 2004 23:07:12 +0000 (23:07 +0000)]
- Show default value of optional parameters of user defined functions.

20 years agoFixed bug #29727 (Added missing CURL authentication directives).
Ilia Alshanetsky [Wed, 18 Aug 2004 21:27:24 +0000 (21:27 +0000)]
Fixed bug #29727 (Added missing CURL authentication directives).

20 years agoForgot to turn off debugging.
Andrei Zmievski [Wed, 18 Aug 2004 18:10:31 +0000 (18:10 +0000)]
Forgot to turn off debugging.

20 years agoRe-add my patch for .ini variable access.
Andrei Zmievski [Wed, 18 Aug 2004 16:58:20 +0000 (16:58 +0000)]
Re-add my patch for .ini variable access.

20 years agoMFB: typo in config.m4 (potential configuration problem with Stronghold)
Antony Dovgal [Wed, 18 Aug 2004 07:22:54 +0000 (07:22 +0000)]
MFB: typo in config.m4 (potential configuration problem with Stronghold)

20 years agoChangeLog update
<changelog@php.net> [Wed, 18 Aug 2004 00:36:55 +0000 (00:36 +0000)]
ChangeLog update

20 years ago- Fix typos
Andi Gutmans [Tue, 17 Aug 2004 23:08:44 +0000 (23:08 +0000)]
- Fix typos

20 years agofix typo
Antony Dovgal [Tue, 17 Aug 2004 10:57:40 +0000 (10:57 +0000)]
fix typo

20 years agoChangeLog update
<changelog@php.net> [Tue, 17 Aug 2004 00:33:20 +0000 (00:33 +0000)]
ChangeLog update

20 years agoFixed bug #29594 (Use PHP's own tmpfile() implementation).
Ilia Alshanetsky [Mon, 16 Aug 2004 23:07:42 +0000 (23:07 +0000)]
Fixed bug #29594 (Use PHP's own tmpfile() implementation).

20 years agoFix an oldie fd leak
Zeev Suraski [Mon, 16 Aug 2004 12:24:52 +0000 (12:24 +0000)]
Fix an oldie fd leak

20 years ago- Fix bug #29447: Reflection API issues
Marcus Boerger [Mon, 16 Aug 2004 08:48:25 +0000 (08:48 +0000)]
- Fix bug #29447: Reflection API issues

20 years agoFixed bug #29678 (opendir() with ftp:// wrapper segfaults if path does not
Ilia Alshanetsky [Mon, 16 Aug 2004 01:41:14 +0000 (01:41 +0000)]
Fixed bug #29678 (opendir() with ftp:// wrapper segfaults if path does not
have trailing slash).

20 years agoChangeLog update
<changelog@php.net> [Mon, 16 Aug 2004 00:33:22 +0000 (00:33 +0000)]
ChangeLog update

20 years agoMake clear this is PDO support
Marcus Boerger [Sun, 15 Aug 2004 19:17:58 +0000 (19:17 +0000)]
Make clear this is PDO support

20 years agoFix extension name
Marcus Boerger [Sun, 15 Aug 2004 15:56:33 +0000 (15:56 +0000)]
Fix extension name

20 years agoRemove unnecessary check
Marcus Boerger [Sun, 15 Aug 2004 15:48:32 +0000 (15:48 +0000)]
Remove unnecessary check

20 years ago- Synch names with other extensions
Marcus Boerger [Sun, 15 Aug 2004 13:43:56 +0000 (13:43 +0000)]
- Synch names with other extensions

20 years agofixed default for mysqli_fetch_array
Georg Richter [Sun, 15 Aug 2004 05:48:16 +0000 (05:48 +0000)]
fixed default for mysqli_fetch_array

20 years agoChangeLog update
<changelog@php.net> [Sun, 15 Aug 2004 00:34:53 +0000 (00:34 +0000)]
ChangeLog update

20 years agoAdd missing check
Marcus Boerger [Sat, 14 Aug 2004 19:02:17 +0000 (19:02 +0000)]
Add missing check

20 years agoChangeLog update
<changelog@php.net> [Sat, 14 Aug 2004 00:34:06 +0000 (00:34 +0000)]
ChangeLog update

20 years agoChecking in a patch by Dave Lawson (dlawson@masterytech.com) to correct
Dan Kalowsky [Fri, 13 Aug 2004 19:33:24 +0000 (19:33 +0000)]
Checking in a patch by Dave Lawson (dlawson@masterytech.com) to correct
some of the behavior found in the odbc_fetch_*() functions.  This patch
NEEDS to be tested on MS Access before a release is done with it.  This
submission is to get it into the daily builds for testing.

20 years agofixed bug #29656 (segfault on result and statement properties)
Georg Richter [Fri, 13 Aug 2004 16:25:29 +0000 (16:25 +0000)]
fixed bug #29656 (segfault on result and statement properties)

20 years agofix yet another annoying compile warning
Antony Dovgal [Fri, 13 Aug 2004 14:59:58 +0000 (14:59 +0000)]
fix yet another annoying compile warning

20 years agofix compile warning
Antony Dovgal [Fri, 13 Aug 2004 14:52:27 +0000 (14:52 +0000)]
fix compile warning

20 years agoForgot to add DomDocumentFragment->appendXML(), when I commited it back then
Christian Stocker [Fri, 13 Aug 2004 12:35:56 +0000 (12:35 +0000)]
Forgot to add DomDocumentFragment->appendXML(), when I commited it back then

20 years agoAdded DomDocument->recover property for parsing not well-formed XML Documents.
Christian Stocker [Fri, 13 Aug 2004 12:32:55 +0000 (12:32 +0000)]
Added DomDocument->recover property for parsing not well-formed XML Documents.

20 years ago- Added the PHP_EOL constant (Patch by Paul Hudson)
Derick Rethans [Fri, 13 Aug 2004 07:02:50 +0000 (07:02 +0000)]
- Added the PHP_EOL constant (Patch by Paul Hudson)

20 years agoChangeLog update
<changelog@php.net> [Fri, 13 Aug 2004 00:33:48 +0000 (00:33 +0000)]
ChangeLog update

20 years agominor fix in mysqli_prepare: copying stmt errormessag to mysql structure
Georg Richter [Thu, 12 Aug 2004 22:14:06 +0000 (22:14 +0000)]
minor fix in mysqli_prepare: copying stmt errormessag to mysql structure

20 years agoMore spaces -> tabs.
Chuck Hagenbuch [Thu, 12 Aug 2004 19:31:36 +0000 (19:31 +0000)]
More spaces -> tabs.

20 years agoProperly fix the msgno check inside imap_fetchbody().
Ilia Alshanetsky [Thu, 12 Aug 2004 19:20:15 +0000 (19:20 +0000)]
Properly fix the msgno check inside imap_fetchbody().

20 years agofix.
Chuck Hagenbuch [Thu, 12 Aug 2004 18:01:45 +0000 (18:01 +0000)]
fix.

20 years agoFix tests after foreach patch
Marcus Boerger [Thu, 12 Aug 2004 08:01:41 +0000 (08:01 +0000)]
Fix tests after foreach patch

20 years ago- Use FREE_HASHTABLE()
Andi Gutmans [Thu, 12 Aug 2004 06:17:42 +0000 (06:17 +0000)]
- Use FREE_HASHTABLE()

20 years ago- Don't use magic numbers
Andi Gutmans [Thu, 12 Aug 2004 05:54:11 +0000 (05:54 +0000)]
- Don't use magic numbers

20 years ago- Significantly improve performance of foreach($arr as $data). (Marcus)
Andi Gutmans [Thu, 12 Aug 2004 05:41:01 +0000 (05:41 +0000)]
- Significantly improve performance of foreach($arr as $data). (Marcus)

20 years agoChange to use md5_file()
Marcus Boerger [Thu, 12 Aug 2004 00:38:01 +0000 (00:38 +0000)]
Change to use md5_file()