[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /ext/pgsql pgsql.c

2003-06-22 Thread Ilia Alshanetsky
iliaa   Sun Jun 22 12:48:17 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
/php4/ext/pgsql pgsql.c 
  Log:
  MFH: Fixed bug #24284 (Fixed memory leak inside pg_ping())
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.262 php4/NEWS:1.1247.2.263
--- php4/NEWS:1.1247.2.262  Wed Jun 18 19:24:13 2003
+++ php4/NEWS   Sun Jun 22 12:48:16 2003
@@ -1,7 +1,7 @@
 PHP 4  NEWS
 |||
 26 Jun 2003, Version 4.3.3RC2
-- dummy (remove when first entry is added)
+- Fixed bug #24284 (Fixed memory leak inside pg_ping()). (Ilia)
 
 19 Jun 2003, Version 4.3.3RC1
 - Synchronized bundled GD library with GD 2.0.15. (Ilia)
Index: php4/ext/pgsql/pgsql.c
diff -u php4/ext/pgsql/pgsql.c:1.244.2.18 php4/ext/pgsql/pgsql.c:1.244.2.19
--- php4/ext/pgsql/pgsql.c:1.244.2.18   Sat May 31 08:59:19 2003
+++ php4/ext/pgsql/pgsql.c  Sun Jun 22 12:48:16 2003
@@ -19,7 +19,7 @@
+--+
  */
  
-/* $Id: pgsql.c,v 1.244.2.18 2003/05/31 12:59:19 helly Exp $ */
+/* $Id: pgsql.c,v 1.244.2.19 2003/06/22 16:48:16 iliaa Exp $ */
 
 #include stdlib.h
 
@@ -865,6 +865,7 @@
zval *pgsql_link = NULL;
int id = -1;
PGconn *pgsql;
+   PGresult *res;
 
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() 
TSRMLS_CC, r,
 pgsql_link) == 
FAILURE) {
@@ -874,7 +875,8 @@
ZEND_FETCH_RESOURCE2(pgsql, PGconn *, pgsql_link, id, PostgreSQL link, 
le_link, le_plink);
 
/* ping connection */
-   PQexec(pgsql, SELECT 1;);
+   res = PQexec(pgsql, SELECT 1;);
+   PQclear(res);
 
/* check status. */
if (PQstatus(pgsql) == CONNECTION_OK)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-18 Thread Jani Taskinen
sniper  Wed Jun 18 19:24:14 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  - Added the 'header'. These 4.3.3RCx sections will be combined for the
final release, 4.3.3. just added them now to keep better track on changes
between the RCs.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.261 php4/NEWS:1.1247.2.262
--- php4/NEWS:1.1247.2.261  Wed Jun 18 18:02:28 2003
+++ php4/NEWS   Wed Jun 18 19:24:13 2003
@@ -1,5 +1,8 @@
 PHP 4  NEWS
 |||
+26 Jun 2003, Version 4.3.3RC2
+- dummy (remove when first entry is added)
+
 19 Jun 2003, Version 4.3.3RC1
 - Synchronized bundled GD library with GD 2.0.15. (Ilia)
 - Improved the engine to use POSIX/socket IO where feasible. (Sascha)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-17 Thread Ilia Alshanetsky
iliaa   Tue Jun 17 09:20:54 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.257 php4/NEWS:1.1247.2.258
--- php4/NEWS:1.1247.2.257  Mon Jun 16 17:38:07 2003
+++ php4/NEWS   Tue Jun 17 09:20:54 2003
@@ -31,6 +31,7 @@
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set. (Adam)
 - Fixed a bug in bundled libmysql (mysql bug #564). (Georg)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Fixed bug #24220 (range() didn't handle numeric strings correctly). (Ilia)
 - Fixed bug #24210 (not detecting assume_default_colors - typo). (Sara)
 - Fixed bug #24198 (Invalid recursion detection in array_merge_recurcive()).
   (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-17 Thread Ilia Alshanetsky
iliaa   Tue Jun 17 09:38:38 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  MFH
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.258 php4/NEWS:1.1247.2.259
--- php4/NEWS:1.1247.2.258  Tue Jun 17 09:20:54 2003
+++ php4/NEWS   Tue Jun 17 09:38:38 2003
@@ -31,6 +31,7 @@
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set. (Adam)
 - Fixed a bug in bundled libmysql (mysql bug #564). (Georg)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Fixed bug #24223 (missing variable initialization in bundled gd). (Ilia)
 - Fixed bug #24220 (range() didn't handle numeric strings correctly). (Ilia)
 - Fixed bug #24210 (not detecting assume_default_colors - typo). (Sara)
 - Fixed bug #24198 (Invalid recursion detection in array_merge_recurcive()).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-17 Thread Jani Taskinen
sniper  Tue Jun 17 11:53:34 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.259 php4/NEWS:1.1247.2.260
--- php4/NEWS:1.1247.2.259  Tue Jun 17 09:38:38 2003
+++ php4/NEWS   Tue Jun 17 11:53:33 2003
@@ -60,6 +60,8 @@
 - Fixed bug #23733 (Coredump on startup with Oracle 9+). (Edin)
 - Fixed bug #23285 (Potential Stack overflow in zendlex). (Wez)
 - Fixed bug #23038, #23574 (aggregate() related leaks and crashes). (Andrei)
+- Fixed bug #22592 (Cascading assignments to strings with curly braces broken).
+  (Stas)
 
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-16 Thread Sara Golemon
pollita Mon Jun 16 16:22:23 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN 24210
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.255 php4/NEWS:1.1247.2.256
--- php4/NEWS:1.1247.2.255  Mon Jun 16 13:43:11 2003
+++ php4/NEWS   Mon Jun 16 16:22:23 2003
@@ -31,6 +31,7 @@
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set. (Adam)
 - Fixed a bug in bundled libmysql (mysql bug #564). (Georg)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Fixed bug #24210 (not detecting assume_default_colors - typo). (sara)
 - Fixed bug #24198 (Invalid recursion detection in array_merge_recurcive()).
   (Ilia)
 - Fixed bug #24155 (gdImageRotate270 incorrectly use x parameter for y axis).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-16 Thread Jani Taskinen
sniper  Mon Jun 16 17:38:08 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  broken caps-lock/shift key
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.256 php4/NEWS:1.1247.2.257
--- php4/NEWS:1.1247.2.256  Mon Jun 16 16:22:23 2003
+++ php4/NEWS   Mon Jun 16 17:38:07 2003
@@ -31,7 +31,7 @@
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set. (Adam)
 - Fixed a bug in bundled libmysql (mysql bug #564). (Georg)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
-- Fixed bug #24210 (not detecting assume_default_colors - typo). (sara)
+- Fixed bug #24210 (not detecting assume_default_colors - typo). (Sara)
 - Fixed bug #24198 (Invalid recursion detection in array_merge_recurcive()).
   (Ilia)
 - Fixed bug #24155 (gdImageRotate270 incorrectly use x parameter for y axis).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-14 Thread Ilia Alshanetsky
iliaa   Sat Jun 14 11:09:26 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.252 php4/NEWS:1.1247.2.253
--- php4/NEWS:1.1247.2.252  Fri Jun 13 10:56:37 2003
+++ php4/NEWS   Sat Jun 14 11:09:26 2003
@@ -32,6 +32,7 @@
   ([EMAIL PROTECTED], Ilia)
 - Fixed bug #24060 (ncurses_del_panel() causes segfault). (Georg)
 - Fixed bug #24054 (Integer overflow failure with GCC/x86 for *=). (Sascha)
+- Fixed bug #24007 (Problem with register_globals  arrays). (Ilia)
 - Fixed bug #23951 (constants in static initializers clobbered by inheritance).
   (Wez, Zend Engine)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-13 Thread Ilia Alshanetsky
iliaa   Fri Jun 13 10:47:11 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.250 php4/NEWS:1.1247.2.251
--- php4/NEWS:1.1247.2.250  Thu Jun 12 15:33:19 2003
+++ php4/NEWS   Fri Jun 13 10:47:11 2003
@@ -24,6 +24,7 @@
   (Adam Dickmeiss)
 - Fixed a bug in bundled libmysql (mysql bug #564). (Georg)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Fixed bug #24161 (No timeout value for imap functions). (Ilia)
 - Fixed bug #24155 (gdImageRotate270 incorrectly use x parameter for y axis).
   ([EMAIL PROTECTED], Ilia)
 - Fixed bug #24060 (ncurses_del_panel() causes segfault). (Georg)
@@ -45,6 +46,8 @@
 - Fixed bug #23733 (Coredump on startup with Oracle 9+). (Edin)
 - Fixed bug #23285 (Potential Stack overflow in zendlex). (Wez)
 - Fixed bug #23038, #23574 (aggregate() related leaks and crashes). (Andrei)
+- Fixed bug #22505 (Allow imap_sort() and imap_search() to specify a charset).
+  (Ilia)
 
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-13 Thread Derick Rethans
On Fri, 13 Jun 2003, Jani Taskinen wrote:

 sniperFri Jun 13 10:56:37 2003 EDT
 
   Modified files:  (Branch: PHP_4_3)
 /php4 NEWS 
   Log:
   it rains here..

here too, but the weather will be better tomorrow ;)

Derick
-- 
Interpreting what the GPL actually means is a job best left to those
that read the future by examining animal entrails.
-
 Derick Rethans http://derickrethans.nl/ 
 International PHP Magazine  http://php-mag.net/
-

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /ext/gd/libgd gd.c /ext/gd/tests bug24155.phpt

2003-06-12 Thread Ilia Alshanetsky
iliaa   Thu Jun 12 15:33:19 2003 EDT

  Added files: (Branch: PHP_4_3)
/php4/ext/gd/tests  bug24155.phpt 

  Modified files:  
/php4/ext/gd/libgd  gd.c 
/php4   NEWS 
  Log:
  MFH: Fixed bug #24155 (gdImageRotate270 incorrectly use x parameter for y axis)
  
  
Index: php4/ext/gd/libgd/gd.c
diff -u php4/ext/gd/libgd/gd.c:1.24.2.13 php4/ext/gd/libgd/gd.c:1.24.2.14
--- php4/ext/gd/libgd/gd.c:1.24.2.13Wed Jun  4 10:58:33 2003
+++ php4/ext/gd/libgd/gd.c  Thu Jun 12 15:33:19 2003
@@ -2613,7 +2613,7 @@
if (dst != NULL) {
gdImagePaletteCopy (dst, src);

-   for (uY = 0; uYsrc-sx; uY++) {
+   for (uY = 0; uYsrc-sy; uY++) {
for (uX = 0; uXsrc-sx; uX++) {
c = f (src, uX, uY);
gdImageSetPixel(dst, (dst-sx - uY - 1), uX, c);
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.249 php4/NEWS:1.1247.2.250
--- php4/NEWS:1.1247.2.249  Mon Jun  9 13:04:57 2003
+++ php4/NEWS   Thu Jun 12 15:33:19 2003
@@ -24,6 +24,8 @@
   (Adam Dickmeiss)
 - Fixed a bug in bundled libmysql (mysql bug #564). (Georg)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Fixed bug #24155 (gdImageRotate270 incorrectly use x parameter for y axis).
+  ([EMAIL PROTECTED], Ilia)
 - Fixed bug #24060 (ncurses_del_panel() causes segfault). (Georg)
 - Fixed bug #24054 (Integer overflow failure with GCC/x86 for *=). (Sascha)
 - Fixed bug #23951 (constants in static initializers clobbered by inheritance).

Index: php4/ext/gd/tests/bug24155.phpt
+++ php4/ext/gd/tests/bug24155.phpt
--TEST--
Bug #24155 (gdImageRotate270 rotation problem).
--SKIPIF--
?php 
if (!extension_loaded('gd')) {  
die(skip gd extension not available\n);
}
if (!GD_BUNDLED) {
die('skip external GD libraries may fail');
}
?
--FILE--
?php
$dest = dirname(realpath(__FILE__)) . 'bug24155.png';
@unlink($dest);

$im = imagecreatetruecolor(30, 50);
imagefill($im, 0, 0, (16777215 - 255)); 
$im = imagerotate($im, 270, 255);
imagepng($im, $dest);

echo md5_file($dest) . \n;
@unlink($dest);
?
--EXPECT--
cc867fd65c30883463ce58d0341f0997



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-09 Thread Wez Furlong
wez Mon Jun  9 13:04:58 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.248 php4/NEWS:1.1247.2.249
--- php4/NEWS:1.1247.2.248  Sun Jun  8 20:25:26 2003
+++ php4/NEWS   Mon Jun  9 13:04:57 2003
@@ -26,6 +26,8 @@
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
 - Fixed bug #24060 (ncurses_del_panel() causes segfault). (Georg)
 - Fixed bug #24054 (Integer overflow failure with GCC/x86 for *=). (Sascha)
+- Fixed bug #23951 (constants in static initializers clobbered by inheritance).
+  (Wez, Zend Engine)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)
 - Fixed bug #23902 (NULL in CGI header output). (Shane)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-08 Thread Jani Taskinen
sniper  Sun Jun  8 20:25:26 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  the blame..:)
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.247 php4/NEWS:1.1247.2.248
--- php4/NEWS:1.1247.2.247  Sat Jun  7 12:14:04 2003
+++ php4/NEWS   Sun Jun  8 20:25:26 2003
@@ -22,7 +22,7 @@
   (Rasmus)
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set.
   (Adam Dickmeiss)
-- Fixed a bug in bundled libmysql (mysql bug #564)
+- Fixed a bug in bundled libmysql (mysql bug #564). (Georg)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
 - Fixed bug #24060 (ncurses_del_panel() causes segfault). (Georg)
 - Fixed bug #24054 (Integer overflow failure with GCC/x86 for *=). (Sascha)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-07 Thread Georg Richter
georg   Sat Jun  7 12:14:05 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  fixed a bug in libmysql 
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.246 php4/NEWS:1.1247.2.247
--- php4/NEWS:1.1247.2.246  Fri Jun  6 15:30:46 2003
+++ php4/NEWS   Sat Jun  7 12:14:04 2003
@@ -22,6 +22,7 @@
   (Rasmus)
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set.
   (Adam Dickmeiss)
+- Fixed a bug in bundled libmysql (mysql bug #564)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
 - Fixed bug #24060 (ncurses_del_panel() causes segfault). (Georg)
 - Fixed bug #24054 (Integer overflow failure with GCC/x86 for *=). (Sascha)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-06 Thread Jani Taskinen
sniper  Fri Jun  6 08:18:31 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.242 php4/NEWS:1.1247.2.243
--- php4/NEWS:1.1247.2.242  Thu Jun  5 01:07:15 2003
+++ php4/NEWS   Fri Jun  6 08:18:30 2003
@@ -23,6 +23,7 @@
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set.
   (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Fixed bug #24054 (Assignment operator *= broken). (Sascha)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)
 - Fixed bug #23902 (NULL in CGI header output). (Shane)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-06 Thread Sascha Schumann
sas Fri Jun  6 08:21:26 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Refine error description
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.243 php4/NEWS:1.1247.2.244
--- php4/NEWS:1.1247.2.243  Fri Jun  6 08:18:30 2003
+++ php4/NEWS   Fri Jun  6 08:21:26 2003
@@ -23,7 +23,7 @@
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set.
   (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
-- Fixed bug #24054 (Assignment operator *= broken). (Sascha)
+- Fixed bug #24054 (Integer overflow failure with GCC/x86 for *=). (Sascha)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)
 - Fixed bug #23902 (NULL in CGI header output). (Shane)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-06 Thread Georg Richter
georg   Fri Jun  6 15:13:11 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  fixed bug 24060
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.244 php4/NEWS:1.1247.2.245
--- php4/NEWS:1.1247.2.244  Fri Jun  6 08:21:26 2003
+++ php4/NEWS   Fri Jun  6 15:13:10 2003
@@ -23,6 +23,7 @@
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set.
   (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Fixed bug #24060 (del_panel function in ext/ncurses). (Georg)
 - Fixed bug #24054 (Integer overflow failure with GCC/x86 for *=). (Sascha)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-06 Thread Jani Taskinen
sniper  Fri Jun  6 15:30:47 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  hrm..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.245 php4/NEWS:1.1247.2.246
--- php4/NEWS:1.1247.2.245  Fri Jun  6 15:13:10 2003
+++ php4/NEWS   Fri Jun  6 15:30:46 2003
@@ -23,7 +23,7 @@
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set.
   (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
-- Fixed bug #24060 (del_panel function in ext/ncurses). (Georg)
+- Fixed bug #24060 (ncurses_del_panel() causes segfault). (Georg)
 - Fixed bug #24054 (Integer overflow failure with GCC/x86 for *=). (Sascha)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS TODO_SEGFAULTS

2003-06-05 Thread Moriyoshi Koizumi
moriyoshi   Wed Jun  4 10:53:31 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS TODO_SEGFAULTS 
  Log:
  BFN updates
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.238 php4/NEWS:1.1247.2.239
--- php4/NEWS:1.1247.2.238  Wed Jun  4 01:54:18 2003
+++ php4/NEWS   Wed Jun  4 10:53:30 2003
@@ -15,6 +15,7 @@
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added a DEBUG note to 'php -v' output when --enable-debug is used. (Derick)
 - Added long options into CLI  CGI (e.g. --version). (Marcus)
+- Fixed integer overflows in base64_encode(). (Moriyoshi)
 - Fixed possible integer overflows in bundled GD library. (Ilia)
 - Fixed mysql.connect_timeout php.ini option to be settable with ini_set().
   (Rasmus)
Index: php4/TODO_SEGFAULTS
diff -u php4/TODO_SEGFAULTS:1.1.2.33 php4/TODO_SEGFAULTS:1.1.2.34
--- php4/TODO_SEGFAULTS:1.1.2.33Tue Jun  3 19:57:58 2003
+++ php4/TODO_SEGFAULTS Wed Jun  4 10:53:31 2003
@@ -23,7 +23,8 @@
 flock (Sascha)
 register_shutdown_function (Sascha)
 mb_strcut('', [number greater than the length of first arg]) (Moriyoshi)
-ext/exif, ext/dba (7) (Marcus)
+ext/exif, ext/dba (Marcus)
+php_base64_encode (Moriyoshi)

 Open:
 
@@ -32,8 +33,7 @@
 socket_select   (3)
 php_imagepolygon(4)
 imagesetstyle   (5)
-php_base64_encode  (6)
-pack   (7)
+pack(6)

 (1) heap corruption, mostly visible in malloc-related calls.  Whether you see 
 this or not might depend on your libc/compiler.  Hard to track down,
@@ -83,11 +83,9 @@
 gdImageSetStyle function called by this php wrapper can die for the
 same reason.  
 
-(6) integer overflow if the specified string is longer then ~1.1 billion bytes.
+(6) multiple integer overflows, ex. pack(d4294967297, 2);
 
-(7) multiple integer overflows, ex. pack(d4294967297, 2);
-
-Ammendment 1.
+Amendment 1.
 
 CFLAGS='-O0 -g' \
 '../src/php4/configure' \



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-05 Thread Jani Taskinen
sniper  Thu Jun  5 00:47:08 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Hopefully this list grows..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.239 php4/NEWS:1.1247.2.240
--- php4/NEWS:1.1247.2.239  Wed Jun  4 10:53:30 2003
+++ php4/NEWS   Thu Jun  5 00:47:07 2003
@@ -15,8 +15,9 @@
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added a DEBUG note to 'php -v' output when --enable-debug is used. (Derick)
 - Added long options into CLI  CGI (e.g. --version). (Marcus)
-- Fixed integer overflows in base64_encode(). (Moriyoshi)
-- Fixed possible integer overflows in bundled GD library. (Ilia)
+- Fixed possible integer overflows in:
+  . base64_encode().(Moriyoshi)
+  . bundled GD library. (Ilia)
 - Fixed mysql.connect_timeout php.ini option to be settable with ini_set().
   (Rasmus)
 - Fixed ext/yaz to not log if yaz.log_file php.ini option is not set.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-05 Thread Jani Taskinen
sniper  Thu Jun  5 01:06:57 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.240 php4/NEWS:1.1247.2.241
--- php4/NEWS:1.1247.2.240  Thu Jun  5 00:47:07 2003
+++ php4/NEWS   Thu Jun  5 01:06:57 2003
@@ -37,7 +37,8 @@
   found). (Hartmut)
 - Fixed bug #23733 (Coredump on startup with Oracle 9+). (Edin)
 - Fixed bug #23285 (Potential Stack overflow in zendlex). (Wez)
- 
+- Fixed bug #23038, #23574 (aggregate() related leaks and crashes). (Andrei)
+  
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)
 - Removed support for GDLIB version 1.x.x (php_gd.dll) on Windows. (Edin)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-05 Thread Jani Taskinen
sniper  Thu Jun  5 01:07:15 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  WS
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.241 php4/NEWS:1.1247.2.242
--- php4/NEWS:1.1247.2.241  Thu Jun  5 01:06:57 2003
+++ php4/NEWS   Thu Jun  5 01:07:15 2003
@@ -38,7 +38,7 @@
 - Fixed bug #23733 (Coredump on startup with Oracle 9+). (Edin)
 - Fixed bug #23285 (Potential Stack overflow in zendlex). (Wez)
 - Fixed bug #23038, #23574 (aggregate() related leaks and crashes). (Andrei)
-  
+
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)
 - Removed support for GDLIB version 1.x.x (php_gd.dll) on Windows. (Edin)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-04 Thread Edin Kadribasic
edink   Tue Jun  3 10:47:03 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN: Make Jani happy
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.234 php4/NEWS:1.1247.2.235
--- php4/NEWS:1.1247.2.234  Mon Jun  2 20:07:20 2003
+++ php4/NEWS   Tue Jun  3 10:47:03 2003
@@ -19,6 +19,7 @@
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)
+- Fixed bug #23902 (NULL in CGI header output). (Shane)
 - Fixed bug #23898 (Proper handling of NULLs in odbc_result, odbc_fetch_into
   and odbc_result_all). (Ilia)
 - Fixed bug #23897 (Fixed a check for mbfilter_ru.h). ([EMAIL PROTECTED], Ilia)
@@ -26,6 +27,7 @@
 - Fixed bug #23888 (Missing input validation for flags parameter). (Ilia)
 - Fixed bug #23779 (mysql_connect(): disable local infile option if php.ini
   option open_basedir is set). (Georg)
+- Fixed bug #23733 (Coredump on startup with Oracle 9+). (Edin)
 - Fixed bug #23285 (Potential Stack overflow in zendlex). (Wez)
  
 29 May 2003, Version 4.3.2



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS TODO_SEGFAULTS

2003-06-04 Thread Ilia Alshanetsky
iliaa   Tue Jun  3 19:57:59 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   TODO_SEGFAULTS NEWS 
  Log:
  GD stuff
  
  
Index: php4/TODO_SEGFAULTS
diff -u php4/TODO_SEGFAULTS:1.1.2.32 php4/TODO_SEGFAULTS:1.1.2.33
--- php4/TODO_SEGFAULTS:1.1.2.32Wed Apr 16 15:17:27 2003
+++ php4/TODO_SEGFAULTS Tue Jun  3 19:57:58 2003
@@ -15,6 +15,7 @@
 str_repeat (Ilia)
 imagecopyresized (Ilia)
 mhash_keygen_s2k (Ilia)
+bundled gd (Ilia)
 mb_ereg, mb_ereg_match, mb_eregi, mb_split (Moriyoshi)
 xml_parser_create (Moriyoshi)
 ob_start (Sascha)
@@ -31,9 +32,8 @@
 socket_select   (3)
 php_imagepolygon(4)
 imagesetstyle   (5)
-bundled gd  (6)
-php_base64_encode  (8)
-pack   (9)
+php_base64_encode  (6)
+pack   (7)

 (1) heap corruption, mostly visible in malloc-related calls.  Whether you see 
 this or not might depend on your libc/compiler.  Hard to track down,
@@ -83,26 +83,9 @@
 gdImageSetStyle function called by this php wrapper can die for the
 same reason.  
 
-(6) multiple integer overflows that can occur when trying to allocate a buffer
-for a new image. Affected functions:
-gdImageCreateFromJpegCtx
-readwbmp
-gdImageCreateFromXpm
-gdImageCreateFromPngCtx
-gdImagePngCtx
-gdImageCreateFromJpegCtx
-gdImageJpegCtx
-gdImageCreateFromGd2Ctx
-gdImageCreateFromGd2PartCtx
-_gdImageGd2
-GetDataBlock (gd_gif_in.c)
+(6) integer overflow if the specified string is longer then ~1.1 billion bytes.
 
-(7) few possible integer overflows, once safe_emalloc() or something similar
-is implemented they can all be addressed.
-
-(8) integer overflow if the specified string is longer then ~1.1 billion bytes.
-
-(9) multiple integer overflows, ex. pack(d4294967297, 2);
+(7) multiple integer overflows, ex. pack(d4294967297, 2);
 
 Ammendment 1.
 
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.235 php4/NEWS:1.1247.2.236
--- php4/NEWS:1.1247.2.235  Tue Jun  3 10:47:03 2003
+++ php4/NEWS   Tue Jun  3 19:57:58 2003
@@ -17,6 +17,8 @@
 - Added long options into CLI  CGI (e.g. --version). (Marcus)
 - Fixed ext/yaz to not log unless yaz.log_file is set. (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Synchronized bundled GD library with GD 2.0.14. (Ilia)
+- Added integer overflow checks to bundled GD library. (Ilia)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)
 - Fixed bug #23902 (NULL in CGI header output). (Shane)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /ext/gd gd.c /ext/gd/libgd gd.c

2003-06-04 Thread Ilia Alshanetsky
iliaa   Tue Jun  3 20:22:31 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
/php4/ext/gdgd.c 
/php4/ext/gd/libgd  gd.c 
  Log:
  MFH
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.236 php4/NEWS:1.1247.2.237
--- php4/NEWS:1.1247.2.236  Tue Jun  3 19:57:58 2003
+++ php4/NEWS   Tue Jun  3 20:22:30 2003
@@ -17,7 +17,7 @@
 - Added long options into CLI  CGI (e.g. --version). (Marcus)
 - Fixed ext/yaz to not log unless yaz.log_file is set. (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
-- Synchronized bundled GD library with GD 2.0.14. (Ilia)
+- Synchronized bundled GD library with GD 2.0.15. (Ilia)
 - Added integer overflow checks to bundled GD library. (Ilia)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)
Index: php4/ext/gd/gd.c
diff -u php4/ext/gd/gd.c:1.221.2.28 php4/ext/gd/gd.c:1.221.2.29
--- php4/ext/gd/gd.c:1.221.2.28 Tue Jun  3 19:55:14 2003
+++ php4/ext/gd/gd.cTue Jun  3 20:22:30 2003
@@ -18,7 +18,7 @@
+--+
  */
 
-/* $Id: gd.c,v 1.221.2.28 2003/06/03 23:55:14 iliaa Exp $ */
+/* $Id: gd.c,v 1.221.2.29 2003/06/04 00:22:30 iliaa Exp $ */
 
 /* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center, 
Cold Spring Harbor Labs. */
@@ -386,7 +386,7 @@
 /* }}} */
 
 #if HAVE_GD_BUNDLED
-#define PHP_GD_VERSION_STRING bundled (2.0.14 compatible)
+#define PHP_GD_VERSION_STRING bundled (2.0.15 compatible)
 #elif HAVE_LIBGD20
 #define PHP_GD_VERSION_STRING 2.0 or higher
 #elif HAVE_GDIMAGECOLORRESOLVE
Index: php4/ext/gd/libgd/gd.c
diff -u php4/ext/gd/libgd/gd.c:1.24.2.10 php4/ext/gd/libgd/gd.c:1.24.2.11
--- php4/ext/gd/libgd/gd.c:1.24.2.10Tue Jun  3 19:55:15 2003
+++ php4/ext/gd/libgd/gd.c  Tue Jun  3 20:22:30 2003
@@ -873,11 +873,6 @@
float p_dist, p_alpha;
unsigned char opacity;
 
-   /* 2.0.13: bounds check! AA_opacity is just as capable of overflowing as the 
main pixel array. Arne Jorgensen. */
-   if (!gdImageBoundsSafeMacro(im, px, py)) {
-   return;
-   }
-
/* 
 * Find the perpendicular distance from point C (px, py) to the line 
 * segment AB that is being drawn.  (Adapted from an algorithm from the
@@ -891,6 +886,15 @@
 
int Bx_Cx = im-AAL_x2 - px;
int By_Cy = im-AAL_y2 - py;
+
+   /* 2.0.13: bounds check! AA_opacity is just as capable of
+* overflowing as the main pixel array. Arne Jorgensen. 
+* 2.0.14: typo fixed. 2.0.15: moved down below declarations
+* to satisfy non-C++ compilers.
+*/
+   if (!gdImageBoundsSafeMacro(im, px, py)) {
+   return;
+   }
 
/* Get the squares of the lengths of the segemnts AC and BC. */
LAC_2 = (Ax_Cx * Ax_Cx) + (Ay_Cy * Ay_Cy);



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-04 Thread Jani Taskinen
sniper  Wed Jun  4 01:54:18 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  cleanup + BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.237 php4/NEWS:1.1247.2.238
--- php4/NEWS:1.1247.2.237  Tue Jun  3 20:22:30 2003
+++ php4/NEWS   Wed Jun  4 01:54:18 2003
@@ -1,6 +1,7 @@
 PHP 4  NEWS
 |||
 ?? Jul 2003, Version 4.3.3
+- Synchronized bundled GD library with GD 2.0.15. (Ilia)
 - Improved the engine to use POSIX/socket IO where feasible. (Sascha)
 - Improved NSAPI SAPI module (Uwe Schindler)
   . php4_init (magnus.conf): new parameter to set alternate path to php.ini.
@@ -11,14 +12,15 @@
   . Added support for virtual()
   . Added nsapi.read_timeout php.ini option. 
   . Synced $_SERVER variables to be similar to Apache variables
-- Changed mysql.connect_timeout directive to be user-settable (Rasmus)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added a DEBUG note to 'php -v' output when --enable-debug is used. (Derick)
 - Added long options into CLI  CGI (e.g. --version). (Marcus)
-- Fixed ext/yaz to not log unless yaz.log_file is set. (Adam Dickmeiss)
+- Fixed possible integer overflows in bundled GD library. (Ilia)
+- Fixed mysql.connect_timeout php.ini option to be settable with ini_set().
+  (Rasmus)
+- Fixed ext/yaz to not log if yaz.log_file php.ini option is not set.
+  (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
-- Synchronized bundled GD library with GD 2.0.15. (Ilia)
-- Added integer overflow checks to bundled GD library. (Ilia)
 - Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
 - Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)
 - Fixed bug #23902 (NULL in CGI header output). (Shane)
@@ -29,6 +31,8 @@
 - Fixed bug #23888 (Missing input validation for flags parameter). (Ilia)
 - Fixed bug #23779 (mysql_connect(): disable local infile option if php.ini
   option open_basedir is set). (Georg)
+- Fixed bug #23769 (In FreeBSD glob() gives wrong result when pattern not
+  found). (Hartmut)
 - Fixed bug #23733 (Coredump on startup with Oracle 9+). (Edin)
 - Fixed bug #23285 (Potential Stack overflow in zendlex). (Wez)
  



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-03 Thread Ilia Alshanetsky
iliaa   Mon Jun  2 20:07:20 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.233 php4/NEWS:1.1247.2.234
--- php4/NEWS:1.1247.2.233  Sat May 31 13:37:55 2003
+++ php4/NEWS   Mon Jun  2 20:07:20 2003
@@ -17,7 +17,8 @@
 - Added long options into CLI  CGI (e.g. --version). (Marcus)
 - Fixed ext/yaz to not log unless yaz.log_file is set. (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
-- Fixed bug #23913 (make rename() work across partitions on *nix) (Ilia)
+- Fixed bug #23913 (make rename() work across partitions on *nix). (Ilia)
+- Fixed bug #23912 (Invalid CSS in phpinfo() output). (Ilia)
 - Fixed bug #23898 (Proper handling of NULLs in odbc_result, odbc_fetch_into
   and odbc_result_all). (Ilia)
 - Fixed bug #23897 (Fixed a check for mbfilter_ru.h). ([EMAIL PROTECTED], Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-01 Thread Rasmus Lerdorf
rasmus  Sat May 31 13:37:55 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  A very minor thing, but we should still make a note of this change.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.232 php4/NEWS:1.1247.2.233
--- php4/NEWS:1.1247.2.232  Fri May 30 23:03:00 2003
+++ php4/NEWS   Sat May 31 13:37:55 2003
@@ -11,6 +11,7 @@
   . Added support for virtual()
   . Added nsapi.read_timeout php.ini option. 
   . Synced $_SERVER variables to be similar to Apache variables
+- Changed mysql.connect_timeout directive to be user-settable (Rasmus)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added a DEBUG note to 'php -v' output when --enable-debug is used. (Derick)
 - Added long options into CLI  CGI (e.g. --version). (Marcus)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Ilia Alshanetsky
iliaa   Fri May 30 09:20:55 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.219 php4/NEWS:1.1247.2.220
--- php4/NEWS:1.1247.2.219  Fri May 30 05:45:57 2003
+++ php4/NEWS   Fri May 30 09:20:55 2003
@@ -6,6 +6,7 @@
 - Added new command line parameters -B, -F, -R and -E which allow to process 
   stdin line by line (See 'php -h' or 'man php' for more). (Marcus)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
+- Fixed bug #23897 (Fixed a check for mbfilter_ru.h) [EMAIL PROTECTED]
 
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Moriyoshi Koizumi
moriyoshi   Fri May 30 09:57:20 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.220 php4/NEWS:1.1247.2.221
--- php4/NEWS:1.1247.2.220  Fri May 30 09:20:55 2003
+++ php4/NEWS   Fri May 30 09:57:20 2003
@@ -6,7 +6,8 @@
 - Added new command line parameters -B, -F, -R and -E which allow to process 
   stdin line by line (See 'php -h' or 'man php' for more). (Marcus)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
-- Fixed bug #23897 (Fixed a check for mbfilter_ru.h) [EMAIL PROTECTED]
+- Fixed bug #23897 (Fixed a check for mbfilter_ru.h). ([EMAIL PROTECTED], Ilia)
+- Fixed bug #23894 (sprintf() decimal specifiers problem). (Moriyoshi)
 
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Ilia Alshanetsky
iliaa   Fri May 30 10:09:21 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  MFH
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.221 php4/NEWS:1.1247.2.222
--- php4/NEWS:1.1247.2.221  Fri May 30 09:57:20 2003
+++ php4/NEWS   Fri May 30 10:09:21 2003
@@ -8,6 +8,7 @@
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 - Fixed bug #23897 (Fixed a check for mbfilter_ru.h). ([EMAIL PROTECTED], Ilia)
 - Fixed bug #23894 (sprintf() decimal specifiers problem). (Moriyoshi)
+- Fixed bug #23888 (Missing input validation for flags parameter) (Ilia)
 
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Ilia Alshanetsky
iliaa   Fri May 30 10:46:20 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.223 php4/NEWS:1.1247.2.224
--- php4/NEWS:1.1247.2.223  Fri May 30 10:17:16 2003
+++ php4/NEWS   Fri May 30 10:46:19 2003
@@ -6,6 +6,8 @@
 - Added new command line parameters -B, -F, -R and -E which allow to process 
   stdin line by line (See 'php -h' or 'man php' for more). (Marcus)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
+- Fixed bug #23898 (Proper handling of NULLs in odbc_result, odbc_fetch_into
+  and odbc_result_all). (Ilia)
 - Fixed bug #23897 (Fixed a check for mbfilter_ru.h). ([EMAIL PROTECTED], Ilia)
 - Fixed bug #23894 (sprintf() decimal specifiers problem). (Moriyoshi)
 - Fixed bug #23888 (Missing input validation for flags parameter). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /sapi/cgi cgi_main.c /sapi/cli php_cli.c

2003-05-31 Thread Derick Rethans
derick  Fri May 30 13:03:10 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
/php4/sapi/cli  php_cli.c 
/php4/sapi/cgi  cgi_main.c 
  Log:
  - Added a DEBUG qualifier to 'php -v's version output, and made the CGI
version statement look the same as the CLI version. (Derick)
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.224 php4/NEWS:1.1247.2.225
--- php4/NEWS:1.1247.2.224  Fri May 30 10:46:19 2003
+++ php4/NEWS   Fri May 30 13:03:09 2003
@@ -6,6 +6,8 @@
 - Added new command line parameters -B, -F, -R and -E which allow to process 
   stdin line by line (See 'php -h' or 'man php' for more). (Marcus)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
+- Added a DEBUG qualifier to 'php -v's version output, and made the CGI
+  version statement look the same as the CLI version. (Derick)
 - Fixed bug #23898 (Proper handling of NULLs in odbc_result, odbc_fetch_into
   and odbc_result_all). (Ilia)
 - Fixed bug #23897 (Fixed a check for mbfilter_ru.h). ([EMAIL PROTECTED], Ilia)
Index: php4/sapi/cli/php_cli.c
diff -u php4/sapi/cli/php_cli.c:1.51.2.21 php4/sapi/cli/php_cli.c:1.51.2.22
--- php4/sapi/cli/php_cli.c:1.51.2.21   Thu May 29 19:57:27 2003
+++ php4/sapi/cli/php_cli.c Fri May 30 13:03:10 2003
@@ -655,8 +655,12 @@
case 'v': /* show php version  quit */
if (php_request_startup(TSRMLS_C)==FAILURE) {
goto err;
-   }
+   }
+#if ZEND_DEBUG
+   php_printf(PHP %s (%s) (built: %s %s) 
(DEBUG)\nCopyright (c) 1997-2003 The PHP Group\n%s, PHP_VERSION, sapi_module.name, 
__DATE__, __TIME__, get_zend_version());
+#else
php_printf(PHP %s (%s) (built: %s %s)\nCopyright (c) 
1997-2003 The PHP Group\n%s, PHP_VERSION, sapi_module.name, __DATE__, __TIME__, 
get_zend_version());
+#endif
php_end_ob_buffers(1 TSRMLS_CC);
exit_status=1;
goto out;
Index: php4/sapi/cgi/cgi_main.c
diff -u php4/sapi/cgi/cgi_main.c:1.190.2.33 php4/sapi/cgi/cgi_main.c:1.190.2.34
--- php4/sapi/cgi/cgi_main.c:1.190.2.33 Thu May 29 11:41:52 2003
+++ php4/sapi/cgi/cgi_main.cFri May 30 13:03:10 2003
@@ -20,7 +20,7 @@
+--+
 */
 
-/* $Id: cgi_main.c,v 1.190.2.33 2003/05/29 15:41:52 helly Exp $ */
+/* $Id: cgi_main.c,v 1.190.2.34 2003/05/30 17:03:10 derick Exp $ */
 
 #include php.h
 #include php_globals.h
@@ -1367,7 +1367,11 @@
SG(headers_sent) = 1;
SG(request_info).no_headers = 
1;
}
-   php_printf(PHP %s (%s), Copyright (c) 
1997-2003 The PHP Group\n%s, PHP_VERSION, sapi_module.name, get_zend_version());
+#if ZEND_DEBUG
+   php_printf(PHP %s (%s) (built: %s %s) 
(DEBUG)\nCopyright (c) 1997-2003 The PHP Group\n%s, PHP_VERSION, sapi_module.name, 
__DATE__, __TIME__, get_zend_version());
+#else
+   php_printf(PHP %s (%s) (built: %s 
%s)\nCopyright (c) 1997-2003 The PHP Group\n%s, PHP_VERSION, sapi_module.name, 
__DATE__, __TIME__, get_zend_version());
+#endif
php_end_ob_buffers(1 TSRMLS_CC);
exit(1);
break;



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Jani Taskinen
sniper  Fri May 30 17:40:13 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Info about the improved NSAPI module
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.226 php4/NEWS:1.1247.2.227
--- php4/NEWS:1.1247.2.226  Fri May 30 16:31:37 2003
+++ php4/NEWS   Fri May 30 17:40:13 2003
@@ -1,6 +1,14 @@
 PHP 4  NEWS
 |||
 ?? Jul 2003, Version 4.3.3
+- Improved NSAPI SAPI module (Uwe Schindler)
+  . php4_init (magnus.conf): new parameter to set alternate path to php.ini.
+(php_ini=/path/to/php.ini)
+  . php4_execute (obj.conf): support for additional php.ini values.
+Allows different settings per virtual server. 
+(See sapi/nsapi/nsapi-readme.txt for more information)
+  . Added support for virtual()
+  . Synced $_SERVER variables to be similar to Apache variables
 - Added long options into CLI  CGI (e.g. --version). (Marcus)
 - Added new command line parameters -B, -F, -R and -E which allow to process 
   stdin line by line (See 'php -h' or 'man php' for more). (Marcus)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Ilia Alshanetsky
iliaa   Fri May 30 20:34:14 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.227 php4/NEWS:1.1247.2.228
--- php4/NEWS:1.1247.2.227  Fri May 30 17:40:13 2003
+++ php4/NEWS   Fri May 30 20:34:14 2003
@@ -16,6 +16,7 @@
 - Added a DEBUG note to 'php -v' output when --enable-debug is used. (Derick)
 - Fixed ext/yaz to not log unless yaz.log_file is set. (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
+- Fixed bug #23913 (make rename() work across partitions on *nix) (Ilia)
 - Fixed bug #23898 (Proper handling of NULLs in odbc_result, odbc_fetch_into
   and odbc_result_all). (Ilia)
 - Fixed bug #23897 (Fixed a check for mbfilter_ru.h). ([EMAIL PROTECTED], Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Jani Taskinen
sniper  Fri May 30 22:10:15 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.229 php4/NEWS:1.1247.2.230
--- php4/NEWS:1.1247.2.229  Fri May 30 21:37:43 2003
+++ php4/NEWS   Fri May 30 22:10:14 2003
@@ -22,6 +22,7 @@
 - Fixed bug #23888 (Missing input validation for flags parameter). (Ilia)
 - Fixed bug #23779 (mysql_connect(): disable local infile option if php.ini
   option open_basedir is set). (Georg)
+- Fixed bug #23285 (Potential Stack overflow in zendlex). (Wez)
  
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Jani Taskinen
sniper  Fri May 30 22:20:25 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  missed this one..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.230 php4/NEWS:1.1247.2.231
--- php4/NEWS:1.1247.2.230  Fri May 30 22:10:14 2003
+++ php4/NEWS   Fri May 30 22:20:25 2003
@@ -9,6 +9,7 @@
 Allows different settings per virtual server. 
 (See sapi/nsapi/nsapi-readme.txt for more information)
   . Added support for virtual()
+  . Added nsapi.read_timeout php.ini option. 
   . Synced $_SERVER variables to be similar to Apache variables
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added a DEBUG note to 'php -v' output when --enable-debug is used. (Derick)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-31 Thread Jani Taskinen
sniper  Fri May 30 23:03:01 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Re-add this entry
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.231 php4/NEWS:1.1247.2.232
--- php4/NEWS:1.1247.2.231  Fri May 30 22:20:25 2003
+++ php4/NEWS   Fri May 30 23:03:00 2003
@@ -13,6 +13,7 @@
   . Synced $_SERVER variables to be similar to Apache variables
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added a DEBUG note to 'php -v' output when --enable-debug is used. (Derick)
+- Added long options into CLI  CGI (e.g. --version). (Marcus)
 - Fixed ext/yaz to not log unless yaz.log_file is set. (Adam Dickmeiss)
 - Fixed ext/exif to honor magic_quotes_runtime php.ini option. (Marcus)
 - Fixed bug #23913 (make rename() work across partitions on *nix) (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-30 Thread Marcus Boerger
helly   Thu May 29 10:24:10 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  MFH ini file support
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.216 php4/NEWS:1.1247.2.217
--- php4/NEWS:1.1247.2.216  Wed May 28 21:28:14 2003
+++ php4/NEWS   Thu May 29 10:24:10 2003
@@ -1,7 +1,7 @@
 PHP 4  NEWS
 |||
 ?? Jul 2003, Version 4.3.3
--
+- Added DBA handler 'inifile' to support ini files. (Marcus)
 
 29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-30 Thread Marcus Boerger
helly   Thu May 29 11:42:45 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  MFH-Update
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.217 php4/NEWS:1.1247.2.218
--- php4/NEWS:1.1247.2.217  Thu May 29 10:24:10 2003
+++ php4/NEWS   Thu May 29 11:42:45 2003
@@ -1,6 +1,9 @@
 PHP 4  NEWS
 |||
 ?? Jul 2003, Version 4.3.3
+- Added long options into CLI  CGI (e.g. --version). (Marcus)
+- Added new command line parameters -B, -F, -R and -E which allow to process 
+  stdin line by line (See 'php -h' or 'man php' for more). (Marcus)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 
 29 May 2003, Version 4.3.2



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /ext/yaz php_yaz.c

2003-05-30 Thread Adam Dickmeiss
dickmeiss   Fri May 30 05:45:57 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
/php4/ext/yaz   php_yaz.c 
  Log:
  Prevent yaz from logging unless yaz.log_file is set
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.218 php4/NEWS:1.1247.2.219
--- php4/NEWS:1.1247.2.218  Thu May 29 11:42:45 2003
+++ php4/NEWS   Fri May 30 05:45:57 2003
@@ -1,6 +1,7 @@
 PHP 4  NEWS
 |||
 ?? Jul 2003, Version 4.3.3
+- Prevent yaz from logging unless yaz.log_file is set (Adam Dickmeiss)
 - Added long options into CLI  CGI (e.g. --version). (Marcus)
 - Added new command line parameters -B, -F, -R and -E which allow to process 
   stdin line by line (See 'php -h' or 'man php' for more). (Marcus)
Index: php4/ext/yaz/php_yaz.c
diff -u php4/ext/yaz/php_yaz.c:1.57.2.4 php4/ext/yaz/php_yaz.c:1.57.2.5
--- php4/ext/yaz/php_yaz.c:1.57.2.4 Tue May 27 05:50:45 2003
+++ php4/ext/yaz/php_yaz.c  Fri May 30 05:45:57 2003
@@ -16,7 +16,7 @@
+--+
  */
 
-/* $Id: php_yaz.c,v 1.57.2.4 2003/05/27 09:50:45 dickmeiss Exp $ */
+/* $Id: php_yaz.c,v 1.57.2.5 2003/05/30 09:45:57 dickmeiss Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
@@ -1473,6 +1473,7 @@
 PHP_MINIT_FUNCTION(yaz)
 {
int i;
+   const char *fname;
nmem_init();
 #ifdef ZTS
yaz_mutex = tsrm_mutex_alloc();
@@ -1481,9 +1482,10 @@
 
REGISTER_INI_ENTRIES();
 
-   if (YAZSG(log_file))
+   fname = YAZSG(log_file);
+   if (fname  *fname)
{
-   yaz_log_init_file(YAZSG(log_file));
+   yaz_log_init_file(fname);
yaz_log_init_level(LOG_ALL);
}
else



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-05-29 Thread Jani Taskinen
sniper  Wed May 28 21:28:14 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Added the header for 4.3.3
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.215 php4/NEWS:1.1247.2.216
--- php4/NEWS:1.1247.2.215  Mon May 26 14:33:20 2003
+++ php4/NEWS   Wed May 28 21:28:14 2003
@@ -1,6 +1,9 @@
 PHP 4  NEWS
 |||
-?? May 2003, Version 4.3.2
+?? Jul 2003, Version 4.3.3
+-
+
+29 May 2003, Version 4.3.2
 - Syncronized bundled GD library with GD 2.0.12. (Ilia)
 - Removed support for GDLIB version 1.x.x (php_gd.dll) on Windows. (Edin)
 - Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-04-02 Thread Jani Taskinen
sniper  Wed Apr  2 12:35:23 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.158 php4/NEWS:1.1247.2.159
--- php4/NEWS:1.1247.2.158  Wed Apr  2 07:38:43 2003
+++ php4/NEWS   Wed Apr  2 12:35:23 2003
@@ -33,6 +33,7 @@
 - Fixed a bug in GD's truecolor TTF handling. (Derick)
 - Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #23009 (pg_select with timestamp). (Marcus, Jay)
 - Fixed bug #23008 (ldap_start_tls() not available on Windows). (Edin)
 - Fixed bug #22989 (sendmail not found by configure). ([EMAIL PROTECTED])
 - Fixed bug #22987 (missing perror() check in configure). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-04-01 Thread Jani Taskinen
sniper  Tue Apr  1 10:38:40 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.156 php4/NEWS:1.1247.2.157
--- php4/NEWS:1.1247.2.156  Mon Mar 31 18:29:30 2003
+++ php4/NEWS   Tue Apr  1 10:38:40 2003
@@ -34,6 +34,7 @@
 - Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22989 (sendmail not found by configure). ([EMAIL PROTECTED])
+- Fixed bug #22987 (missing perror() check in configure). (Jani)
 - Fixed bug #22965 (Crash in gd lib's ImageFillToBorder()). (Ilia)
 - Fixed bug #22844 (Changing bool value via -d or ini_set(), On would be Off). (Ilia)
 - Fixed bug #22775 (Fatal errors exit with status 0 with CGI/CLI). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-31 Thread Jani Taskinen
sniper  Mon Mar 31 18:29:31 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN  houshold
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.155 php4/NEWS:1.1247.2.156
--- php4/NEWS:1.1247.2.155  Sun Mar 30 15:48:48 2003
+++ php4/NEWS   Mon Mar 31 18:29:30 2003
@@ -33,9 +33,9 @@
 - Fixed a bug in GD's truecolor TTF handling. (Derick)
 - Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22989 (sendmail not found by configure). ([EMAIL PROTECTED])
 - Fixed bug #22965 (Crash in gd lib's ImageFillToBorder()). (Ilia)
-- Fixed bug #22844 (when changing bool value via -d or ini_set, On would 
-  become Off). (Ilia)
+- Fixed bug #22844 (Changing bool value via -d or ini_set(), On would be Off). (Ilia)
 - Fixed bug #22775 (Fatal errors exit with status 0 with CGI/CLI). (Jani)
 - Fixed bug #22751 (Compile error in gdcache.c when external libgd is used). (Jani)
 - Fixed bug #22721 (Poor file() performance on systems without mmap). (Wez)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-30 Thread Ilia Alshanetsky
iliaa   Sun Mar 30 15:48:48 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.154 php4/NEWS:1.1247.2.155
--- php4/NEWS:1.1247.2.154  Thu Mar 27 08:32:45 2003
+++ php4/NEWS   Sun Mar 30 15:48:48 2003
@@ -33,6 +33,7 @@
 - Fixed a bug in GD's truecolor TTF handling. (Derick)
 - Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22965 (Crash in gd lib's ImageFillToBorder()). (Ilia)
 - Fixed bug #22844 (when changing bool value via -d or ini_set, On would 
   become Off). (Ilia)
 - Fixed bug #22775 (Fatal errors exit with status 0 with CGI/CLI). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-27 Thread Edin Kadribasic
edink   Thu Mar 27 08:32:45 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.153 php4/NEWS:1.1247.2.154
--- php4/NEWS:1.1247.2.153  Mon Mar 24 14:42:20 2003
+++ php4/NEWS   Thu Mar 27 08:32:45 2003
@@ -86,6 +86,7 @@
 - Fixed bug #22103 (Added gdImageEllipse and replaced old gdImageFilledEllipse
   with a better implementation). (Pierre)
 - Fixed bug #22088 (array_shift() left next index to be +1 too much). (Jani)
+- Fixed bug #22083 (MySQL charset directory problem on Windows). (Edin)
 - Fixed bug #22059 (ftp_chdir() causes segfault). (Sara)
 - Fixed bug #22048 (crash in imap_header() when the e-mail contains an 
   abnormally large number of special characters). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-19 Thread Jani Taskinen
sniper  Wed Mar 19 03:23:02 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.149 php4/NEWS:1.1247.2.150
--- php4/NEWS:1.1247.2.149  Tue Mar 18 10:21:33 2003
+++ php4/NEWS   Wed Mar 19 03:23:02 2003
@@ -31,6 +31,7 @@
 - Fixed a bug in GD's truecolor TTF handling. (Derick)
 - Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22775 (Fatal errors exit with status 0 with CGI/CLI). (Jani)
 - Fixed bug #22751 (Compile error in gdcache.c when external libgd is used). (Jani)
 - Fixed bug #22721 (Poor file() performance on systems without mmap). (Wez)
 - Fixed bug #22709 (Crash in interbase when database unavailable). (Vladimir Michl)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-18 Thread Wez Furlong
wez Tue Mar 18 10:21:33 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.148 php4/NEWS:1.1247.2.149
--- php4/NEWS:1.1247.2.148  Mon Mar 17 21:15:22 2003
+++ php4/NEWS   Tue Mar 18 10:21:33 2003
@@ -32,6 +32,7 @@
 - Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22751 (Compile error in gdcache.c when external libgd is used). (Jani)
+- Fixed bug #22721 (Poor file() performance on systems without mmap). (Wez)
 - Fixed bug #22709 (Crash in interbase when database unavailable). (Vladimir Michl)
 - Fixed bug #22681 (Crash when reading from invalid file pointer). (Ilia)
 - Fixed bug #22672 (User not logged under Apache2). (Ian) 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-17 Thread Ilia Alshanetsky
iliaa   Mon Mar 17 13:33:31 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.145 php4/NEWS:1.1247.2.146
--- php4/NEWS:1.1247.2.145  Mon Mar 17 10:19:30 2003
+++ php4/NEWS   Mon Mar 17 13:33:30 2003
@@ -39,6 +39,7 @@
 - Fixed bug #22585 (Do not terminate the script on minor errors). (Ilia)
 - Fixed bug #22550 (overflow protection for upload_max_filesize ini option). (Ilia)
 - Fixed bug #22544 (writing transparency to truecolor png images). (Ilia)
+- Fixed bug #22538 (failed stat on stdio/stdin/stderr streams). (Wez, Ilia)
 - Fixed bug #22520 (mcrypt_generic_deinit() was not available on Windows). (Edin)
 - Fixed bug #22508 (Added protection against circular HTML redirects). (Ilia)
 - Fixed bug #22473 (ISAPI Secure Server variables not available). (Christian Swoboda)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-17 Thread Jani Taskinen
sniper  Mon Mar 17 20:26:16 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.146 php4/NEWS:1.1247.2.147
--- php4/NEWS:1.1247.2.146  Mon Mar 17 13:33:30 2003
+++ php4/NEWS   Mon Mar 17 20:26:16 2003
@@ -33,6 +33,7 @@
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22709 (Crash in interbase when database unavailable). (Vladimir Michl)
 - Fixed bug #22681 (Crash when reading from invalid file pointer). (Ilia)
+- Fixed bug #22672 (User not logged under Apache2). (Ian) 
 - Fixed bug #22616 (Wrong order of -lssl and -lcrypto with IMAP). (Jani)
 - Fixed bug #22613 (imagettfbox() does not add the kerning distance to the
   running position). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /main main.c

2003-03-15 Thread Marcus Boerger
helly   Sat Mar 15 19:03:29 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4/main  main.c 
/php4   NEWS 
  Log:
  MFH bugfix #21751
  
Index: php4/main/main.c
diff -u php4/main/main.c:1.512.2.16 php4/main/main.c:1.512.2.17
--- php4/main/main.c:1.512.2.16 Wed Mar 12 07:01:01 2003
+++ php4/main/main.cSat Mar 15 19:03:26 2003
@@ -18,7 +18,7 @@
+--+
 */
 
-/* $Id: main.c,v 1.512.2.16 2003/03/12 12:01:01 sesser Exp $ */
+/* $Id: main.c,v 1.512.2.17 2003/03/16 00:03:26 helly Exp $ */
 
 /* {{{ includes
  */
@@ -923,7 +923,7 @@
php_start_ob_buffer_named(PG(output_handler), 0, 1 TSRMLS_CC);
} else if (PG(output_buffering)) {
if (PG(output_buffering)1) {
-   php_start_ob_buffer(NULL, PG(output_buffering), 0 
TSRMLS_CC);
+   php_start_ob_buffer(NULL, PG(output_buffering), 1 
TSRMLS_CC);
} else {
php_start_ob_buffer(NULL, 0, 1 TSRMLS_CC);
}
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.141 php4/NEWS:1.1247.2.142
--- php4/NEWS:1.1247.2.141  Fri Mar 14 19:45:44 2003
+++ php4/NEWS   Sat Mar 15 19:03:27 2003
@@ -89,6 +89,7 @@
 - Fixed bug #21815 (fpassthru() ignored buffered data but complained anyway). 
   (Wez)
 - Fixed bug #21809 (select would not always timeout during socket shutdown). (Wez)
+- Fixed bug #21751 (default output buffer could not be deleted). (Marcus)
 - Fixed bug #21725 (return behaviour differs between include and require). (Zeev)
 - Fixed bug #21713 (include remote files leaks descriptors on Solaris). (Wez)
 - Fixed bug #21708 (ucwords() trouble again). (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-14 Thread Derick Rethans
derick  Fri Mar 14 06:51:31 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  - BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.138 php4/NEWS:1.1247.2.139
--- php4/NEWS:1.1247.2.138  Thu Mar 13 17:54:48 2003
+++ php4/NEWS   Fri Mar 14 06:51:31 2003
@@ -135,6 +135,7 @@
 - Fixed bug #20857 (snmpset() failed always, patch by: [EMAIL PROTECTED]). (Jani)
 - Fixed bug #20802 (PHP would die silently when memory limit reached). (Ilia)
 - Fixed bug #20715 (odbc could not be compiled as shared extension). (Jani)
+- Fixed bug #20641 (Numeric/decimal datatype overflow on Win32). (Daniela)
 - Fixed bug #20503 (imagesetbrush() not available on Windows). (Edin)
 - Fixed bug #20282 (COM memory leak). (Harald)
 - Fixed bug #20256 (snprintf() not defined on some systems). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-14 Thread Derick Rethans
derick  Fri Mar 14 08:01:33 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  - Explain that it is interbase related (Thanks to Andrey)
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.139 php4/NEWS:1.1247.2.140
--- php4/NEWS:1.1247.2.139  Fri Mar 14 06:51:31 2003
+++ php4/NEWS   Fri Mar 14 08:01:29 2003
@@ -135,7 +135,8 @@
 - Fixed bug #20857 (snmpset() failed always, patch by: [EMAIL PROTECTED]). (Jani)
 - Fixed bug #20802 (PHP would die silently when memory limit reached). (Ilia)
 - Fixed bug #20715 (odbc could not be compiled as shared extension). (Jani)
-- Fixed bug #20641 (Numeric/decimal datatype overflow on Win32). (Daniela)
+- Fixed bug #20641 (Numeric/decimal datatype overflow in the Interbase module
+  on Win32). (Daniela)
 - Fixed bug #20503 (imagesetbrush() not available on Windows). (Edin)
 - Fixed bug #20282 (COM memory leak). (Harald)
 - Fixed bug #20256 (snprintf() not defined on some systems). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-14 Thread Jani Taskinen
sniper  Fri Mar 14 19:45:45 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  MFH
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.140 php4/NEWS:1.1247.2.141
--- php4/NEWS:1.1247.2.140  Fri Mar 14 08:01:29 2003
+++ php4/NEWS   Fri Mar 14 19:45:44 2003
@@ -442,8 +442,6 @@
 - Made mime_magic and ZIP extensions available on Windows. (Edin)
 - Added xslt_backend_version() and xslt_backend_name() for getting
   information about the processor backend. (chregu)
-- Added php.ini option allow_webdav_methods to allow handling of
-  WebDAV http requests within PHP scripts. (chregu)
 - Added ImageColorMatch() and ImageLayerEffect() functions which are only 
   available when using the bundled GD library. (ttoohey)
 - Made major improvents to the pcntl extension. (Jason)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-13 Thread Sara Golemon
pollita Thu Mar 13 15:25:02 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.135 php4/NEWS:1.1247.2.136
--- php4/NEWS:1.1247.2.135  Thu Mar 13 13:16:21 2003
+++ php4/NEWS   Thu Mar 13 15:25:01 2003
@@ -83,6 +83,7 @@
   (Ilia)
 - Fixed bug #22017 (date() does not support negative timestamps on win32). (Ilia)
 - Fixed bug #21998 (array_pop() did not reset the current array position). (Jani)
+- Fixed bug #21978, #21036 (bcc: gets interpreted as cc: as well - win32 smtp mail 
only). (Sara)
 - Fixed bug #21885 (move_uploaded_file() does not ignore open_basedir). (Wez)
 - Fixed bug #21815 (fpassthru() ignored buffered data but complained anyway). 
   (Wez)
@@ -96,6 +97,7 @@
 - Fixed bug #21597 (made glob() understand Windows paths). (Edin)
 - Fixed bug #21549 (problem with Ingres II persistent connections). (Jani)
 - Fixed bug #21544 (Extended checks for where FreeTDS is installed). (Frank)
+- Fixed bug #21534 (typo in gmp_gcdext() causes incorrect results). (Sara)
 - Fixed bug #21531 (file_exists() and other filestat functions report errors
   when the requested file/directory does not exists). (Sara)
 - Fixed bug #21529 (memory corruption by fsockopen()). (Ilia)
@@ -148,6 +150,7 @@
 - Fixed bug #14532 (fixed connection_status() to return 2 for timeouts). (Jani)
 - Fixed bug #14245 ('make install' fails on AIX when using --with-apxs). (Jani)
 - Fixed bug #13561 (--without-pear disabled phpize/php-config install). (Jani)
+- Fixed bug #13551 (bcmath functions applying scale incorrectly). (Sara)
 
 17 Feb 2003, Version 4.3.1
 - Fixed serious security vulnerability in CGI SAPI. (Shane)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-13 Thread Jani Taskinen
sniper  Thu Mar 13 17:54:49 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN shortening
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.137 php4/NEWS:1.1247.2.138
--- php4/NEWS:1.1247.2.137  Thu Mar 13 17:32:16 2003
+++ php4/NEWS   Thu Mar 13 17:54:48 2003
@@ -84,7 +84,7 @@
   (Ilia)
 - Fixed bug #22017 (date() does not support negative timestamps on win32). (Ilia)
 - Fixed bug #21998 (array_pop() did not reset the current array position). (Jani)
-- Fixed bug #21978, #21036 (bcc: gets interpreted as cc: as well - win32 smtp mail 
only). (Sara)
+- Fixed bug #21978, #21036 (win32 mail(), bcc: gets interpreted as cc:). (Sara)
 - Fixed bug #21885 (move_uploaded_file() does not ignore open_basedir). (Wez)
 - Fixed bug #21815 (fpassthru() ignored buffered data but complained anyway). 
   (Wez)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-10 Thread Ilia Alshanetsky
iliaa   Mon Mar 10 14:09:23 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.129 php4/NEWS:1.1247.2.130
--- php4/NEWS:1.1247.2.129  Sat Mar  8 13:28:08 2003
+++ php4/NEWS   Mon Mar 10 14:09:22 2003
@@ -27,6 +27,8 @@
 - Fixed a bug in GD's truecolor TTF handling. (Derick)
 - Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22613 (imagettfbox() does not add the kerning distance to the
+  running position). (Ilia)
 - Fixed bug #22585 (Do not terminate the script on minor errors). (Ilia)
 - Fixed bug #22550 (overflow protection for upload_max_filesize ini option). (Ilia)
 - Fixed bug #22544 (writing transparency to truecolor png images). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-10 Thread Jani Taskinen
sniper  Mon Mar 10 22:12:38 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.131 php4/NEWS:1.1247.2.132
--- php4/NEWS:1.1247.2.131  Mon Mar 10 21:13:00 2003
+++ php4/NEWS   Mon Mar 10 22:12:37 2003
@@ -129,6 +129,7 @@
 - Fixed bug #21131 (fopen() with mode 'a+' and rewind() doesn't work). (Wez)
 - Fixed bug #20857 (snmpset() failed always, patch by: [EMAIL PROTECTED]). (Jani)
 - Fixed bug #20802 (PHP would die silently when memory limit reached). (Ilia)
+- Fixed bug #20715 (odbc could not be compiled as shared extension). (Jani)
 - Fixed bug #20503 (imagesetbrush() not available on Windows). (Edin)
 - Fixed bug #20282 (COM memory leak). (Harald)
 - Fixed bug #20256 (snprintf() not defined on some systems). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /ext/gd gdttf.c

2003-03-08 Thread Derick Rethans
derick  Sat Mar  8 13:28:08 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4/ext/gdgdttf.c 
/php4   NEWS 
  Log:
  - MFH: Fixed a bug in GD's truecolor TTF handling.
  
  
Index: php4/ext/gd/gdttf.c
diff -u php4/ext/gd/gdttf.c:1.16.10.1 php4/ext/gd/gdttf.c:1.16.10.2
--- php4/ext/gd/gdttf.c:1.16.10.1   Wed Mar  5 11:04:20 2003
+++ php4/ext/gd/gdttf.c Sat Mar  8 13:28:07 2003
@@ -2,7 +2,7 @@
 /*  */
 /* John Ellson   [EMAIL PROTECTED]  */
 
-/* $Id: gdttf.c,v 1.16.10.1 2003/03/05 16:04:20 iliaa Exp $ */
+/* $Id: gdttf.c,v 1.16.10.2 2003/03/08 18:28:07 derick Exp $ */
 
 #include php.h
 
@@ -744,11 +744,15 @@
if (tweencolorkey.pixel  0) {
x3 = x2 + col;
if (x3 = im-sx || x3  0) continue;
+   if (im-trueColor) {
+   pixel = im-tpixels[y3][x3];
+   } else {
 #if HAVE_LIBGD13
-   pixel = im-pixels[y3][x3];
+   pixel = im-pixels[y3][x3];
 #else
-   pixel = im-pixels[x3][y3];
+   pixel = im-pixels[x3][y3];
 #endif
+   }
tweencolorkey.bgcolor = *pixel;
tweencolor = (tweencolor_t *)gdCacheGet(
tweenColorCache, tweencolorkey);
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.128 php4/NEWS:1.1247.2.129
--- php4/NEWS:1.1247.2.128  Fri Mar  7 13:58:34 2003
+++ php4/NEWS   Sat Mar  8 13:28:08 2003
@@ -24,6 +24,7 @@
   --enable-memory-limit. (Andrey)
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
+- Fixed a bug in GD's truecolor TTF handling. (Derick)
 - Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22585 (Do not terminate the script on minor errors). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-07 Thread Ilia Alshanetsky
iliaa   Fri Mar  7 09:08:55 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.125 php4/NEWS:1.1247.2.126
--- php4/NEWS:1.1247.2.125  Wed Mar  5 13:48:04 2003
+++ php4/NEWS   Fri Mar  7 09:08:54 2003
@@ -25,6 +25,7 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22585 (Do not terminate the script on minor errors). (Ilia)
 - Fixed bug #22550 (overflow protection for upload_max_filesize ini option). (Ilia)
 - Fixed bug #22544 (writing transparency to truecolor png images). (Ilia)
 - Fixed bug #22520 (mcrypt_generic_deinit() was not available on Windows). (Edin)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-07 Thread Jani Taskinen
sniper  Fri Mar  7 13:41:42 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Added note about the 64bit fixes
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.126 php4/NEWS:1.1247.2.127
--- php4/NEWS:1.1247.2.126  Fri Mar  7 09:08:54 2003
+++ php4/NEWS   Fri Mar  7 13:41:42 2003
@@ -24,6 +24,7 @@
   --enable-memory-limit. (Andrey)
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
+- Fixed several 64-bit problems. (Dave)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22585 (Do not terminate the script on minor errors). (Ilia)
 - Fixed bug #22550 (overflow protection for upload_max_filesize ini option). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /sapi/isapi php4isapi.c

2003-03-07 Thread Jani Taskinen
sniper  Fri Mar  7 13:58:35 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
/php4/sapi/isapiphp4isapi.c 
  Log:
  MFH: Fix for bug #22473
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.127 php4/NEWS:1.1247.2.128
--- php4/NEWS:1.1247.2.127  Fri Mar  7 13:41:42 2003
+++ php4/NEWS   Fri Mar  7 13:58:34 2003
@@ -31,6 +31,7 @@
 - Fixed bug #22544 (writing transparency to truecolor png images). (Ilia)
 - Fixed bug #22520 (mcrypt_generic_deinit() was not available on Windows). (Edin)
 - Fixed bug #22508 (Added protection against circular HTML redirects). (Ilia)
+- Fixed bug #22473 (ISAPI Secure Server variables not available). (Christian Swoboda)
 - Fixed bug #22402 (opening of ftp for read/write could fail due to invalid
   return code handling). (Ilia)
 - Fixed bug #22384 (FNM_CASEFOLD is not available). (Hartmut)
Index: php4/sapi/isapi/php4isapi.c
diff -u php4/sapi/isapi/php4isapi.c:1.92.2.1 php4/sapi/isapi/php4isapi.c:1.92.2.2
--- php4/sapi/isapi/php4isapi.c:1.92.2.1Tue Dec 31 11:27:12 2002
+++ php4/sapi/isapi/php4isapi.c Fri Mar  7 13:58:34 2003
@@ -517,7 +517,9 @@
sapi_isapi_register_server_variables2(isapi_server_variable_names, lpECB, 
track_vars_array, NULL TSRMLS_CC);
 
if (isapi_special_server_variables[SPECIAL_VAR_HTTPS]
-atoi(isapi_special_server_variables[SPECIAL_VAR_HTTPS])) {
+(atoi(isapi_special_server_variables[SPECIAL_VAR_HTTPS])
+   || !strcasecmp(isapi_special_server_variables[SPECIAL_VAR_HTTPS], 
on))
+   ) {
/* Register SSL ISAPI variables */

sapi_isapi_register_server_variables2(isapi_secure_server_variable_names, lpECB, 
track_vars_array, NULL TSRMLS_CC);
}



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-05 Thread Ilia Alshanetsky
iliaa   Wed Mar  5 11:24:06 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  GD news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.122 php4/NEWS:1.1247.2.123
--- php4/NEWS:1.1247.2.122  Tue Mar  4 11:22:00 2003
+++ php4/NEWS   Wed Mar  5 11:24:05 2003
@@ -1,6 +1,7 @@
 PHP 4  NEWS
 |||
 ?? ??? 2003, Version 4.3.2
+- Syncronized bundled GD library with GD 2.0.11. (Ilia)
 - Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows.
   (Sebastian, Edin)
 - Improved dba extension (Marcus)
@@ -24,6 +25,7 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22544 (writing transparency to truecolor png images). (Ilia)
 - Fixed bug #22520 (mcrypt_generic_deinit() was not available on Windows). (Edin)
 - Fixed bug #22508 (Added protection against circular HTML redirects). (Ilia)
 - Fixed bug #22402 (opening of ftp for read/write could fail due to invalid



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-05 Thread Ilia Alshanetsky
iliaa   Wed Mar  5 12:03:06 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.123 php4/NEWS:1.1247.2.124
--- php4/NEWS:1.1247.2.123  Wed Mar  5 11:24:05 2003
+++ php4/NEWS   Wed Mar  5 12:03:03 2003
@@ -25,6 +25,8 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22550 (overflow protection for upload_max_filesize ini setting). 
+  (Ilia)
 - Fixed bug #22544 (writing transparency to truecolor png images). (Ilia)
 - Fixed bug #22520 (mcrypt_generic_deinit() was not available on Windows). (Edin)
 - Fixed bug #22508 (Added protection against circular HTML redirects). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-04 Thread Jani Taskinen
sniper  Tue Mar  4 09:24:53 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  adding news entry for disable_classes addition
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.120 php4/NEWS:1.1247.2.121
--- php4/NEWS:1.1247.2.120  Mon Mar  3 16:30:19 2003
+++ php4/NEWS   Tue Mar  4 09:24:48 2003
@@ -9,6 +9,8 @@
   . Disallow linkage of Berkeley db submodules against libraries with
 different major version.
   . Disallow configuring of more than one Berkeley db handler. 
+- Added disable_classes php.ini option to allow administrators to disable
+  certain classes for security reasons. (Harald)
 - Added man page for CLI version of PHP. (Marcus)
 - Added --clean option into phpize. (Jani)
 - Added --ldflags option into php-config. (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-04 Thread Ilia Alshanetsky
iliaa   Tue Mar  4 11:22:01 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.121 php4/NEWS:1.1247.2.122
--- php4/NEWS:1.1247.2.121  Tue Mar  4 09:24:48 2003
+++ php4/NEWS   Tue Mar  4 11:22:00 2003
@@ -25,6 +25,7 @@
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22520 (mcrypt_generic_deinit() was not available on Windows). (Edin)
+- Fixed bug #22508 (Added protection against circular HTML redirects). (Ilia)
 - Fixed bug #22402 (opening of ftp for read/write could fail due to invalid
   return code handling). (Ilia)
 - Fixed bug #22384 (FNM_CASEFOLD is not available). (Hartmut)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-03-02 Thread Ilia Alshanetsky
iliaa   Sun Mar  2 09:38:55 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  New function news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.118 php4/NEWS:1.1247.2.119
--- php4/NEWS:1.1247.2.118  Fri Feb 28 08:32:46 2003
+++ php4/NEWS   Sun Mar  2 09:38:54 2003
@@ -12,6 +12,7 @@
 - Added man page for CLI version of PHP. (Marcus)
 - Added --clean option into phpize. (Jani)
 - Added --ldflags option into php-config. (Jani)
+- Added imagesavealpha() and imageistruecolor() functions. (Pierre)
 - Added session_regenerate_id() function. (Sascha)
 - Added zlib_get_coding_type() function which returns the coding type used for 
   output compression. (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-28 Thread Jani Taskinen
sniper  Fri Feb 28 05:23:05 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.116 php4/NEWS:1.1247.2.117
--- php4/NEWS:1.1247.2.116  Fri Feb 28 02:35:58 2003
+++ php4/NEWS   Fri Feb 28 05:23:05 2003
@@ -23,6 +23,7 @@
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22402 (opening of ftp for read/write could fail due to invalid
   return code handling). (Ilia)
+- Fixed bug #22384 (FNM_CASEFOLD is not available). (Hartmut)
 - Fixed bug #22382 (fgetcsv() did not handle \ correctly). (Ilia)
 - Fixed bug #22376 (wrong httpd.conf modified when using INSTALL_ROOT). (Jani)
 - Fixed bug #22363 (combinations of fwrite(), fread() and fseek() produce



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-28 Thread Moriyoshi Koizumi
moriyoshi   Fri Feb 28 08:32:46 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Was actually an ucwords() problem...
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.117 php4/NEWS:1.1247.2.118
--- php4/NEWS:1.1247.2.117  Fri Feb 28 05:23:05 2003
+++ php4/NEWS   Fri Feb 28 08:32:46 2003
@@ -72,7 +72,7 @@
 - Fixed bug #21809 (select would not always timeout during socket shutdown). (Wez)
 - Fixed bug #21725 (return behaviour differs between include and require). (Zeev)
 - Fixed bug #21713 (include remote files leaks descriptors on Solaris). (Wez)
-- Fixed bug #21708 (ucfirst() trouble again). (Moriyoshi)
+- Fixed bug #21708 (ucwords() trouble again). (Moriyoshi)
 - Fixed bug #21689 (fgetcsv() suppresses some characters before a separator).
   (Masahiro, Moriyoshi)
 - Fixed bug #21912, #21676 (GetImageSize() failed for remote files). (Wez)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-27 Thread Ilia Alshanetsky
iliaa   Thu Feb 27 11:42:43 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.114 php4/NEWS:1.1247.2.115
--- php4/NEWS:1.1247.2.114  Tue Feb 25 13:56:53 2003
+++ php4/NEWS   Thu Feb 27 11:42:42 2003
@@ -94,6 +94,7 @@
   get_browser()). (Ilia)
 - Fixed bug #21442 (crash in mail() on Windows when 1st parameter is empty). 
   (Edin)
+- Fixed bug #21410 (fixed handling of NULL or  files on Win32). (Ilia)
 - Fixed bug #21378 (COM code crashes after update 4.2.1 to 4.3.0). (Harald)
 - Fixed bug #21338 (html_entity_decode() crashed when  is passed). (Ilia)
 - Fixed bug #21297 (in CLI/CGI sapis on the #! it would leave a \n when the



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-27 Thread Jani Taskinen
sniper  Fri Feb 28 02:35:59 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.115 php4/NEWS:1.1247.2.116
--- php4/NEWS:1.1247.2.115  Thu Feb 27 11:42:42 2003
+++ php4/NEWS   Fri Feb 28 02:35:58 2003
@@ -30,6 +30,8 @@
 - Fixed bug #22355 (PHP would remove folding from Subject  To fields). (Ilia)
 - Fixed bug #22330 (overloaded strrpos() gives wrong results).
   ([EMAIL PROTECTED], Moriyoshi)
+- Fixed bug #22312 (crash on failed connection when curl_getinfo() was called).
+  (Phil Oleson [EMAIL PROTECTED])
 - Fixed bug #22308 (optimized passthru, code is now ~40 times faster). (Ilia)
 - Fixed bug #22306 (pg_lo_seek($h, 0, PGSQL_SEEK_SET) succeeds but returns false).
   (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-25 Thread Jani Taskinen
sniper  Tue Feb 25 04:46:24 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.111 php4/NEWS:1.1247.2.112
--- php4/NEWS:1.1247.2.111  Tue Feb 25 01:37:18 2003
+++ php4/NEWS   Tue Feb 25 04:46:24 2003
@@ -110,6 +110,7 @@
 - Fixed bug #20802 (PHP would die silently when memory limit reached). (Ilia)
 - Fixed bug #20503 (imagesetbrush() not available on Windows). (Edin)
 - Fixed bug #20282 (COM memory leak). (Harald)
+- Fixed bug #20256 (snprintf() not defined on some systems). (Jani)
 - Fixed bug #19919 (crash in sapi_apache_header_handler under heavy load).
   (George)
 - Fixed bug #17868 (multiple !--include-- used to include PHP files crashes).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-25 Thread Jani Taskinen
sniper  Tue Feb 25 06:25:01 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.112 php4/NEWS:1.1247.2.113
--- php4/NEWS:1.1247.2.112  Tue Feb 25 04:46:24 2003
+++ php4/NEWS   Tue Feb 25 06:25:00 2003
@@ -104,6 +104,7 @@
 - Fixed bug #21228 (broken check for ob_gzhandler and made ob_start() return
   the correct value). (Ilia)
 - Fixed bug #21226 (parse_url handling of urls without a path). (Ilia)
+- Fixed bug #21224 (apache configure fails when using --enable-versioning). (Jani)
 - Fixed bug #21169 (Compile Failure and lots of warnings on UnixWare). (Derick)
 - Fixed bug #21131 (fopen() with mode 'a+' and rewind() doesn't work). (Wez)
 - Fixed bug #20857 (snmpset() failed always, patch by: [EMAIL PROTECTED]). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-25 Thread Moriyoshi Koizumi
moriyoshi   Tue Feb 25 13:56:56 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN: the fix was actually done by Ilia.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.113 php4/NEWS:1.1247.2.114
--- php4/NEWS:1.1247.2.113  Tue Feb 25 06:25:00 2003
+++ php4/NEWS   Tue Feb 25 13:56:53 2003
@@ -33,6 +33,7 @@
 - Fixed bug #22308 (optimized passthru, code is now ~40 times faster). (Ilia)
 - Fixed bug #22306 (pg_lo_seek($h, 0, PGSQL_SEEK_SET) succeeds but returns false).
   (Jani)
+- Fixed bug #22301 (htmlspecialchars() crashes Apache on Tru64). (Ilia)
 - Fixed bug #22299 (gethostbyname() with non-existing domain crashed on MacOSX).
   (Jani)
 - Fixed bug #22283 (possible crash when opening relative URLs). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-24 Thread Ilia Alshanetsky
iliaa   Mon Feb 24 14:42:39 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.108 php4/NEWS:1.1247.2.109
--- php4/NEWS:1.1247.2.108  Sun Feb 23 22:18:26 2003
+++ php4/NEWS   Mon Feb 24 14:42:38 2003
@@ -25,6 +25,7 @@
 - Fixed bug #22376 (wrong httpd.conf modified when using INSTALL_ROOT). (Jani)
 - Fixed bug #22363 (combinations of fwrite(), fread() and fseek() produce
   unexpected results). (Wez)
+- Fixed bug #22355 (PHP would remove folding from Subject  To fields). (Ilia)
 - Fixed bug #22330 (overloaded strrpos() gives wrong results).
   ([EMAIL PROTECTED], Moriyoshi)
 - Fixed bug #22308 (optimized passthru, code is now ~40 times faster). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-24 Thread Ilia Alshanetsky
iliaa   Mon Feb 24 23:21:27 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.109 php4/NEWS:1.1247.2.110
--- php4/NEWS:1.1247.2.109  Mon Feb 24 14:42:38 2003
+++ php4/NEWS   Mon Feb 24 23:21:26 2003
@@ -21,6 +21,8 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22402 (opening of ftp for read/write could fail due to invalid
+  return code handling). (Ilia)
 - Fixed bug #22382 (fgetcsv() did not handle \ correctly). (Ilia)
 - Fixed bug #22376 (wrong httpd.conf modified when using INSTALL_ROOT). (Jani)
 - Fixed bug #22363 (combinations of fwrite(), fread() and fseek() produce



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-24 Thread Jani Taskinen
sniper  Tue Feb 25 01:37:18 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.110 php4/NEWS:1.1247.2.111
--- php4/NEWS:1.1247.2.110  Mon Feb 24 23:21:26 2003
+++ php4/NEWS   Tue Feb 25 01:37:18 2003
@@ -121,6 +121,7 @@
 - Fixed bug #16798 (Compile failure with LOB support for Oracle version  8.1).
   (Maxim)
 - Fixed bug #14532 (fixed connection_status() to return 2 for timeouts). (Jani)
+- Fixed bug #14245 ('make install' fails on AIX when using --with-apxs). (Jani)
 - Fixed bug #13561 (--without-pear disabled phpize/php-config install). (Jani)
 
 17 Feb 2003, Version 4.3.1



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-23 Thread Jani Taskinen
sniper  Sun Feb 23 20:31:25 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.106 php4/NEWS:1.1247.2.107
--- php4/NEWS:1.1247.2.106  Sun Feb 23 02:35:57 2003
+++ php4/NEWS   Sun Feb 23 20:31:24 2003
@@ -106,6 +106,8 @@
 - Fixed bug #20802 (PHP would die silently when memory limit reached). (Ilia)
 - Fixed bug #20503 (imagesetbrush() not available on Windows). (Edin)
 - Fixed bug #20282 (COM memory leak). (Harald)
+- Fixed bug #19919 (crash in sapi_apache_header_handler under heavy load).
+  (George)
 - Fixed bug #17868 (multiple !--include-- used to include PHP files crashes).
   (Ilia)
 - Fixed bug #17448 (Print the message when OCI_SUCCESS_WITH_INFO is returned).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-22 Thread Wez Furlong
wez Sat Feb 22 06:30:09 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Squashed those ugly bugs!
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.103 php4/NEWS:1.1247.2.104
--- php4/NEWS:1.1247.2.103  Thu Feb 20 12:57:54 2003
+++ php4/NEWS   Sat Feb 22 06:30:06 2003
 -21,6 +21,8 
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22363 (combinations of fwrite(), fread() and fseek() produce
+  unexpected results). (Wez)
 - Fixed bug #22330 (overloaded strrpos() gives wrong results).
   ([EMAIL PROTECTED], Moriyoshi)
 - Fixed bug #22308 (optimized passthru, code is now ~40 times faster). (Ilia)
 -59,9 +61,11 
   (Wez)
 - Fixed bug #21809 (select would not always timeout during socket shutdown). (Wez)
 - Fixed bug #21725 (return behaviour differs between include and require). (Zeev)
+- Fixed bug #21713 (include remote files leaks descriptors on Solaris). (Wez)
 - Fixed bug #21708 (ucfirst() trouble again). (Moriyoshi)
 - Fixed bug #21689 (fgetcsv() suppresses some characters before a separator).
   (Masahiro, Moriyoshi)
+- Fixed bug #21912, #21676 (GetImageSize() failed for remote files). (Wez)
 - Fixed bug #21597 (made glob() understand Windows paths). (Edin)
 - Fixed bug #21549 (problem with Ingres II persistent connections). (Jani)
 - Fixed bug #21544 (Extended checks for where FreeTDS is installed). (Frank)
 -94,7 +98,9 
 - Fixed bug #21228 (broken check for ob_gzhandler and made ob_start() return
   the correct value). (Ilia)
 - Fixed bug #21226 (parse_url handling of urls without a path). (Ilia)
+- Fixed bug #21185 (move_uploaded_file() does not ignore open_basedir). (Wez)
 - Fixed bug #21169 (Compile Failure and lots of warnings on UnixWare). (Derick)
+- Fixed bug #21131 (fopen() with mode 'a+' and rewind() doesn't work). (Wez)
 - Fixed bug #20857 (snmpset() failed always, patch by: [EMAIL PROTECTED]). (Jani)
 - Fixed bug #20802 (PHP would die silently when memory limit reached). (Ilia)
 - Fixed bug #20503 (imagesetbrush() not available on Windows). (Edin)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-22 Thread Wez Furlong
wez Sat Feb 22 15:51:13 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Correct a bug number - thanks to Philip...
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.104 php4/NEWS:1.1247.2.105
--- php4/NEWS:1.1247.2.104  Sat Feb 22 06:30:06 2003
+++ php4/NEWS   Sat Feb 22 15:51:13 2003
 -57,6 +57,7 
   (Ilia)
 - Fixed bug #22017 (date() does not support negative timestamps on win32). (Ilia)
 - Fixed bug #21998 (array_pop() did not reset the current array position). (Jani)
+- Fixed bug #21885 (move_uploaded_file() does not ignore open_basedir). (Wez)
 - Fixed bug #21815 (fpassthru() ignored buffered data but complained anyway). 
   (Wez)
 - Fixed bug #21809 (select would not always timeout during socket shutdown). (Wez)
 -98,7 +99,6 
 - Fixed bug #21228 (broken check for ob_gzhandler and made ob_start() return
   the correct value). (Ilia)
 - Fixed bug #21226 (parse_url handling of urls without a path). (Ilia)
-- Fixed bug #21185 (move_uploaded_file() does not ignore open_basedir). (Wez)
 - Fixed bug #21169 (Compile Failure and lots of warnings on UnixWare). (Derick)
 - Fixed bug #21131 (fopen() with mode 'a+' and rewind() doesn't work). (Wez)
 - Fixed bug #20857 (snmpset() failed always, patch by: [EMAIL PROTECTED]). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-22 Thread Jani Taskinen
sniper  Sun Feb 23 02:35:57 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.105 php4/NEWS:1.1247.2.106
--- php4/NEWS:1.1247.2.105  Sat Feb 22 15:51:13 2003
+++ php4/NEWS   Sun Feb 23 02:35:57 2003
 -21,6 +21,7 
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22376 (wrong httpd.conf modified when using INSTALL_ROOT). (Jani)
 - Fixed bug #22363 (combinations of fwrite(), fread() and fseek() produce
   unexpected results). (Wez)
 - Fixed bug #22330 (overloaded strrpos() gives wrong results).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-20 Thread Moriyoshi Koizumi
moriyoshi   Thu Feb 20 12:57:55 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.102 php4/NEWS:1.1247.2.103
--- php4/NEWS:1.1247.2.102  Thu Feb 20 02:14:23 2003
+++ php4/NEWS   Thu Feb 20 12:57:54 2003
@@ -21,6 +21,8 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22330 (overloaded strrpos() gives wrong results).
+  ([EMAIL PROTECTED], Moriyoshi)
 - Fixed bug #22308 (optimized passthru, code is now ~40 times faster). (Ilia)
 - Fixed bug #22306 (pg_lo_seek($h, 0, PGSQL_SEEK_SET) succeeds but returns false).
   (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-19 Thread Jani Taskinen
sniper  Wed Feb 19 19:15:56 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.96 php4/NEWS:1.1247.2.97
--- php4/NEWS:1.1247.2.96   Tue Feb 18 19:50:36 2003
+++ php4/NEWS   Wed Feb 19 19:15:55 2003
@@ -25,6 +25,7 @@
 - Fixed bug #7 (printf() field limiters broke between 4.2.3 and 4.3.0).
   (Moriyoshi)
 - Fixed bug #4 (implode() changes object references in array). (Moriyoshi)
+- Fixed bug #1 (bad rows count in the result object for postgresql). (Marc)
 - Fixed bug #22207 (e notation in *printf would be missing a 0 when there is
   no exponent). (Ilia)
 - Fixed bug #0 (php_admin_value open_basedir none does not work). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-19 Thread Ilia Alshanetsky
iliaa   Wed Feb 19 19:35:43 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.97 php4/NEWS:1.1247.2.98
--- php4/NEWS:1.1247.2.97   Wed Feb 19 19:15:55 2003
+++ php4/NEWS   Wed Feb 19 19:35:42 2003
@@ -20,6 +20,7 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22308 (optimized passthru, code is now ~40 times faster). (Ilia)
 - Fixed bug #22283 (possible crash when opening relative URLs). (Ilia)
 - Fixed bug #22234 (copy() fails if source file has 0 length). (Moriyoshi)
 - Fixed bug #7 (printf() field limiters broke between 4.2.3 and 4.3.0).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-19 Thread Jani Taskinen
sniper  Thu Feb 20 00:36:54 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.98 php4/NEWS:1.1247.2.99
--- php4/NEWS:1.1247.2.98   Wed Feb 19 19:35:42 2003
+++ php4/NEWS   Thu Feb 20 00:36:54 2003
@@ -21,6 +21,8 @@
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22308 (optimized passthru, code is now ~40 times faster). (Ilia)
+- Fixed bug #22299 (gethostbyname() with non-existing domain crashed on MacOSX).
+  (Jani)
 - Fixed bug #22283 (possible crash when opening relative URLs). (Ilia)
 - Fixed bug #22234 (copy() fails if source file has 0 length). (Moriyoshi)
 - Fixed bug #7 (printf() field limiters broke between 4.2.3 and 4.3.0).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-19 Thread Sascha Schumann
sas Thu Feb 20 01:55:36 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  update
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.99 php4/NEWS:1.1247.2.100
--- php4/NEWS:1.1247.2.99   Thu Feb 20 00:36:54 2003
+++ php4/NEWS   Thu Feb 20 01:55:35 2003
@@ -1,6 +1,7 @@
 PHP 4  NEWS
 |||
 ?? ??? 2003, Version 4.3.2
+- Added session_regenerate_id(). (Sascha)
 - Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows.
   (Sebastian, Edin)
 - Improved dba extension (Marcus)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-19 Thread Jani Taskinen
sniper  Thu Feb 20 02:14:24 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  style fix
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.101 php4/NEWS:1.1247.2.102
--- php4/NEWS:1.1247.2.101  Thu Feb 20 02:12:02 2003
+++ php4/NEWS   Thu Feb 20 02:14:23 2003
@@ -1,7 +1,6 @@
 PHP 4  NEWS
 |||
 ?? ??? 2003, Version 4.3.2
-- Added session_regenerate_id(). (Sascha)
 - Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows.
   (Sebastian, Edin)
 - Improved dba extension (Marcus)
@@ -13,6 +12,7 @@
 - Added man page for CLI version of PHP. (Marcus)
 - Added --clean option into phpize. (Jani)
 - Added --ldflags option into php-config. (Jani)
+- Added session_regenerate_id() function. (Sascha)
 - Added zlib_get_coding_type() function which returns the coding type used for 
   output compression. (Moriyoshi)
 - Added OCIPasswordChange() which allows renewing expired Oracle users. (Maxim)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-18 Thread Moriyoshi Koizumi
moriyoshi   Tue Feb 18 10:26:21 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.93 php4/NEWS:1.1247.2.94
--- php4/NEWS:1.1247.2.93   Mon Feb 17 13:16:49 2003
+++ php4/NEWS   Tue Feb 18 10:26:20 2003
@@ -49,6 +49,8 @@
   (Wez)
 - Fixed bug #21809 (select would not always timeout during socket shutdown). (Wez)
 - Fixed bug #21725 (return behaviour differs between include and require). (Zeev)
+- Fixed bug #21689 (fgetcsv() suppresses some characters before a separator).
+  (Masahiro, Moriyoshi)
 - Fixed bug #21597 (made glob() understand Windows paths). (Edin)
 - Fixed bug #21549 (problem with Ingres II persistent connections). (Jani)
 - Fixed bug #21544 (Extended checks for where FreeTDS is installed). (Frank)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-18 Thread Moriyoshi Koizumi
moriyoshi   Tue Feb 18 13:15:44 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.94 php4/NEWS:1.1247.2.95
--- php4/NEWS:1.1247.2.94   Tue Feb 18 10:26:20 2003
+++ php4/NEWS   Tue Feb 18 13:15:44 2003
@@ -49,6 +49,7 @@
   (Wez)
 - Fixed bug #21809 (select would not always timeout during socket shutdown). (Wez)
 - Fixed bug #21725 (return behaviour differs between include and require). (Zeev)
+- Fixed bug #21708 (ucfirst() trouble again). (Moriyoshi)
 - Fixed bug #21689 (fgetcsv() suppresses some characters before a separator).
   (Masahiro, Moriyoshi)
 - Fixed bug #21597 (made glob() understand Windows paths). (Edin)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-17 Thread Jani Taskinen
sniper  Mon Feb 17 13:16:49 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  MFH
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.92 php4/NEWS:1.1247.2.93
--- php4/NEWS:1.1247.2.92   Sat Feb 15 15:42:49 2003
+++ php4/NEWS   Mon Feb 17 13:16:49 2003
@@ -1,6 +1,6 @@
 PHP 4  NEWS
 |||
-? ? ??? 200?, Version 4.3.1
+?? ??? 2003, Version 4.3.2
 - Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows.
   (Sebastian, Edin)
 - Improved dba extension (Marcus)
@@ -97,6 +97,9 @@
 - Fixed bug #14532 (fixed connection_status() to return 2 for timeouts). (Jani)
 - Fixed bug #13561 (--without-pear disabled phpize/php-config install). (Jani)
 
+17 Feb 2003, Version 4.3.1
+- Fixed serious security vulnerability in CGI SAPI. (Shane)
+
 27 Dec 2002, Version 4.3.0
 - If you don't specify building any other SAPI make install will install the
   CGI SAPI binary in {PREFIX}/bin/php. If you want to install CLI SAPI in that
@@ -115,7 +118,7 @@
   . ext/cybercash
 - Make PHP_AUTH_* variables not available in safe mode under Apache when an
   external basic auth mechanism is used. (Philip)
-- Aliased dba_popen() to dba_open() until 4.3.1 when persistent STDIO streams
+- Aliased dba_popen() to dba_open() until 4.3.2 when persistent STDIO streams
   are introduced. (Andrei)
 - Fixed a security bug in the bundled MySQL library. (Georg, Stefan)
 - ZLIB extension is now built-in in the Windows distribution.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-15 Thread Wez Furlong
wez Sat Feb 15 10:16:58 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  bug fixed.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.88 php4/NEWS:1.1247.2.89
--- php4/NEWS:1.1247.2.88   Fri Feb 14 14:48:57 2003
+++ php4/NEWS   Sat Feb 15 10:16:58 2003
@@ -43,6 +43,7 @@
 - Fixed bug #21998 (array_pop() did not reset the current array position). (Jani)
 - Fixed bug #21815 (fpassthru() ignored buffered data but complained anyway). 
   (Wez)
+- Fixed bug #21809 (select would not always timeout during socket shutdown). (Wez)
 - Fixed bug #21725 (return behaviour differs between include and require). (Zeev)
 - Fixed bug #21597 (made glob() understand Windows paths). (Edin)
 - Fixed bug #21549 (problem with Ingres II persistent connections). (Jani)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-15 Thread Moriyoshi Koizumi
moriyoshi   Sat Feb 15 11:00:22 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  B.F.N.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.89 php4/NEWS:1.1247.2.90
--- php4/NEWS:1.1247.2.89   Sat Feb 15 10:16:58 2003
+++ php4/NEWS   Sat Feb 15 11:00:20 2003
@@ -20,6 +20,8 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #7 (printf() field limiters broke between 4.2.3 and 4.3.0).
+  (Moriyoshi)
 - Fixed bug #4 (implode() changes object references in array). (Moriyoshi)
 - Fixed bug #22207 (e notation in *printf would be missing a 0 when there is
   no exponent). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-15 Thread Moriyoshi Koizumi
moriyoshi   Sat Feb 15 15:00:05 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  B.F.N.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.90 php4/NEWS:1.1247.2.91
--- php4/NEWS:1.1247.2.90   Sat Feb 15 11:00:20 2003
+++ php4/NEWS   Sat Feb 15 15:00:03 2003
@@ -20,6 +20,7 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22234 (copy() fails if source file has 0 length). (Moriyoshi)
 - Fixed bug #7 (printf() field limiters broke between 4.2.3 and 4.3.0).
   (Moriyoshi)
 - Fixed bug #4 (implode() changes object references in array). (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-15 Thread Jani Taskinen
sniper  Sat Feb 15 15:42:50 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.91 php4/NEWS:1.1247.2.92
--- php4/NEWS:1.1247.2.91   Sat Feb 15 15:00:03 2003
+++ php4/NEWS   Sat Feb 15 15:42:49 2003
@@ -26,6 +26,7 @@
 - Fixed bug #4 (implode() changes object references in array). (Moriyoshi)
 - Fixed bug #22207 (e notation in *printf would be missing a 0 when there is
   no exponent). (Ilia)
+- Fixed bug #0 (php_admin_value open_basedir none does not work). (Jani)
 - Fixed bug #22191 (frontbase build broken with old version of frontbase). (Ilia)
 - Fixed bug #22187 (spprintf function did not handle floats correctly). (Ilia)
 - Fixed bug #22149 (incorrect insertion of session id when tabs are used to



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-14 Thread Moriyoshi Koizumi
moriyoshi   Fri Feb 14 14:44:03 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  BFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.86 php4/NEWS:1.1247.2.87
--- php4/NEWS:1.1247.2.86   Thu Feb 13 15:08:52 2003
+++ php4/NEWS   Fri Feb 14 14:44:02 2003
@@ -20,6 +20,7 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #4 (implode() changes object references in array). (Moriyoshi)
 - Fixed bug #22207 (e notation in *printf would be missing a 0 when there is
   no exponent). (Ilia)
 - Fixed bug #22191 (frontbase build broken with old version of frontbase). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-14 Thread Moriyoshi Koizumi
moriyoshi   Fri Feb 14 14:48:57 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Slight fix for consistency
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.87 php4/NEWS:1.1247.2.88
--- php4/NEWS:1.1247.2.87   Fri Feb 14 14:44:02 2003
+++ php4/NEWS   Fri Feb 14 14:48:57 2003
@@ -12,7 +12,7 @@
 - Added man page for CLI version of PHP. (Marcus)
 - Added --clean option into phpize. (Jani)
 - Added --ldflags option into php-config. (Jani)
-- Added zlib_get_coding_type() function. Returns the coding type used for 
+- Added zlib_get_coding_type() function which returns the coding type used for 
   output compression. (Moriyoshi)
 - Added OCIPasswordChange() which allows renewing expired Oracle users. (Maxim)
 - Added memory_get_usage(). Only available when PHP is configured with 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS /ext/hwapi hwapi.cpp

2003-02-13 Thread Uwe Steinmann
steinm  Thu Feb 13 05:56:51 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
/php4/ext/hwapi hwapi.cpp 
  Log:
  - Some functions with objects as its parameters didn't recognize them
as such
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.81 php4/NEWS:1.1247.2.82
--- php4/NEWS:1.1247.2.81   Thu Feb 13 02:19:15 2003
+++ php4/NEWS   Thu Feb 13 05:56:49 2003
@@ -1,6 +1,8 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.3.1
+- Fixed several errors in functions in hwapi extension. Passed objects
+  weren't handled properly. (Uwe)
 - Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows.
   (Sebastian, Edin)
 - Improved dba extension (Marcus)
Index: php4/ext/hwapi/hwapi.cpp
diff -u php4/ext/hwapi/hwapi.cpp:1.2 php4/ext/hwapi/hwapi.cpp:1.2.2.1
--- php4/ext/hwapi/hwapi.cpp:1.2Thu Oct 24 09:14:36 2002
+++ php4/ext/hwapi/hwapi.cppThu Feb 13 05:56:50 2003
@@ -16,7 +16,7 @@
+--+
  */
 
-/* $Id: hwapi.cpp,v 1.2 2002/10/24 13:14:36 sas Exp $ */
+/* $Id: hwapi.cpp,v 1.2.2.1 2003/02/13 10:56:50 steinm Exp $ */
 
 #include stdlib.h
 #include errno.h
@@ -919,19 +919,19 @@
break;
case IS_OBJECT:
if(!strcmp(key, object)) {
-   if(!((*keydata)-value.obj.ce-name, 
hw_api_object)) {
+   if(!strcmp((*keydata)-value.obj.ce-name, 
+hw_api_object)) {
HW_API_Object *obj;
obj = (HW_API_Object *) 
php_hwapi_get_object(*keydata, le_hwapi_objectp);
in-setObject(*obj);
}
} else if(!strcmp(key, parameters)) {
-   if(!((*keydata)-value.obj.ce-name, 
hw_api_object)) {
+   if(!strcmp((*keydata)-value.obj.ce-name, 
+hw_api_object)) {
HW_API_Object *obj;
obj = (HW_API_Object *) 
php_hwapi_get_object(*keydata, le_hwapi_objectp);
in-setParameters(*obj);
}
} else if(!strcmp(key, content)) {
-   if(!((*keydata)-value.obj.ce-name, 
hw_api_content)) {
+   if(!strcmp((*keydata)-value.obj.ce-name, 
+hw_api_content)) {
HW_API_Content *obj;
obj = (HW_API_Content *) 
php_hwapi_get_object(*keydata, le_hwapi_contentp);
in-setContent(*obj);
@@ -1045,19 +1045,19 @@
switch((*keydata)-type) {
case IS_OBJECT:
if(!strcmp(key, object)) {
-   if(!((*keydata)-value.obj.ce-name, 
HW_API_Object)) {
+   if(!strcmp((*keydata)-value.obj.ce-name, 
+hw_api_object)) {
HW_API_Object *obj;
obj = (HW_API_Object *) 
php_hwapi_get_object(*keydata, le_hwapi_objectp);
in-setObject(*obj);
}
} else if(!strcmp(key, parameters)) {
-   if(!((*keydata)-value.obj.ce-name, 
HW_API_Object)) {
+   if(!strcmp((*keydata)-value.obj.ce-name, 
+hw_api_object)) {
HW_API_Object *obj;
obj = (HW_API_Object *) 
php_hwapi_get_object(*keydata, le_hwapi_objectp);
in-setParameters(*obj);
}
} else if(!strcmp(key, content)) {
-   if(!((*keydata)-value.obj.ce-name, 
HW_API_Content)) {
+   if(!strcmp((*keydata)-value.obj.ce-name, 
+hw_api_content)) {
HW_API_Content *obj;
obj = (HW_API_Content *) 
php_hwapi_get_object(*keydata, le_hwapi_contentp);
in-setContent(*obj);
@@ -1116,13 +1116,13 @@
break;
case IS_OBJECT:
   

[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-13 Thread Jani Taskinen
sniper  Thu Feb 13 12:00:31 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  altering history..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.82 php4/NEWS:1.1247.2.83
--- php4/NEWS:1.1247.2.82   Thu Feb 13 05:56:49 2003
+++ php4/NEWS   Thu Feb 13 12:00:28 2003
@@ -1,8 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.3.1
-- Fixed several errors in functions in hwapi extension. Passed objects
-  weren't handled properly. (Uwe)
 - Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows.
   (Sebastian, Edin)
 - Improved dba extension (Marcus)
@@ -21,6 +19,7 @@
   --enable-memory-limit. (Andrey)
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
+- Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
 - Fixed bug #22191 (frontbase build broken with old version of frontbase). (Ilia)
 - Fixed bug #22187 (spprintf function did not handle floats correctly). (Ilia)
 - Fixed bug #22149 (incorrect insertion of session id when tabs are used to
@@ -98,13 +97,13 @@
 - Removed extensions: (Jan, Jani, Sebastian)
   . ext/aspell
   . ext/ccvs
-  . ext/cybercash
   . ext/icap
   . sapi/fastcgi
   . sapi/fhttpd
-- Moved extensions to PECL (http://pear.php.net/): (James, Derick)
+- Moved extensions to PECL (http://pear.php.net/): (James, Derick, George)
   . ext/vpopmail
   . ext/cybermut
+  . ext/cybercash
 - Make PHP_AUTH_* variables not available in safe mode under Apache when an
   external basic auth mechanism is used. (Philip)
 - Aliased dba_popen() to dba_open() until 4.3.1 when persistent STDIO streams



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-02-13 Thread Ilia Alshanetsky
iliaa   Thu Feb 13 12:27:29 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.83 php4/NEWS:1.1247.2.84
--- php4/NEWS:1.1247.2.83   Thu Feb 13 12:00:28 2003
+++ php4/NEWS   Thu Feb 13 12:27:28 2003
@@ -20,6 +20,8 @@
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added XBM and WBMP support for getimagesize(). (Marcus)
 - Fixed several errors in hwapi extension. Objects weren't handled properly. (Uwe)
+- Fixed bug #22207 (e notation in *printf would be missing a 0 when there is
+  no exponent). (Ilia)
 - Fixed bug #22191 (frontbase build broken with old version of frontbase). (Ilia)
 - Fixed bug #22187 (spprintf function did not handle floats correctly). (Ilia)
 - Fixed bug #22149 (incorrect insertion of session id when tabs are used to



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




  1   2   >