[PHP-DEV] Bug #15048: xml displayed in program listing in manual/en/migration.truefalse.php

2002-01-15 Thread pgl
From: [EMAIL PROTECTED] Operating system: - PHP version: 4.1.1 PHP Bug Type: Documentation problem Bug description: xml displayed in program listing in manual/en/migration.truefalse.php not sure if this is a website problem really, but this page:

[PHP-DEV] Bug #14888: could configure generate a shell script to reuse for other installations?

2002-01-06 Thread pgl
From: [EMAIL PROTECTED] Operating system: FreeBSD PHP version: 4.1.1 PHP Bug Type: Feature/Change Request Bug description: could configure generate a shell script to reuse for other installations? when installing php, it would be nice if configure could generate a little

[PHP-DEV] Bug #14888 Updated: could configure generate a shell script to reuse for other installations?

2002-01-06 Thread pgl
ID: 14888 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: Feature/Change Request Operating System: FreeBSD PHP Version: 4.1.1 New Comment: excellent! (well, nice.) thanks. Previous Comments:

[PHP-DEV] Bug #14063: unset($array[]) causes apache 1.3.20 to coredump

2001-11-14 Thread pgl
From: [EMAIL PROTECTED] Operating system: FreeBSD 4.4-STABLE PHP version: 4.0CVS-2001-11-14 PHP Bug Type: Reproducible crash Bug description: unset($array[]) causes apache 1.3.20 to coredump I'm not actually using version 4.0CVS-2001-11-14, but I updated 2001-11-08 (6 days

[PHP-DEV] Bug #13974 Updated: file functions fail without trailing slash on urls with only the domain

2001-11-09 Thread pgl
ID: 13974 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: Filesystem function related Operating System: FreeBSD 4.3 PHP Version: 4.0.6 New Comment: works fine now: [mini:pgl]:~ $ /usr/local/bin/php -v 4.2.0-dev [mini:pgl]:~ $

[PHP-DEV] Bug #13997: Would be nice to report which module conflicts if API version incorrect

2001-11-09 Thread pgl
From: [EMAIL PROTECTED] Operating system: FreeBSD 4.3 PHP version: 4.0CVS-2001-11-09 PHP Bug Type: Feature/Change Request Bug description: Would be nice to report which module conflicts if API version incorrect I recently tried to compile PHP and got this error: PHP

[PHP-DEV] Bug #12930: request for = and ||= operators

2001-08-23 Thread pgl
From: [EMAIL PROTECTED] Operating system: FreeBSD PHP version: 4.0.6 PHP Bug Type: Feature/Change Request Bug description: request for = and ||= operators Just a feature request for = and ||= operators as shortcuts for the logical equivalent of $var $var = 'val'. eg:

[PHP-DEV] Bug #12480: array_merge_recursive() clobbers existing numeric keys

2001-07-31 Thread pgl
From: [EMAIL PROTECTED] Operating system: FreeBSD PHP version: 4.0.6 PHP Bug Type: Arrays related Bug description: array_merge_recursive() clobbers existing numeric keys if any of the keys of the first level of arrays are numeric, using array_merge_recursive() will

[PHP-DEV] Bug #10504: imagefill() causes segfault when x and y coords are outside image range

2001-04-26 Thread pgl
. eg: [pgl@redbox ~]# cat s.php ? Header (Content-type: image/gif); $im = imagecreate (500, 500); $black = ImageColorAllocate ($im, 0, 0, 0); $red = imagecolorallocate ($im, 255, 0, 0); imagefill ($im, 500, 1, $red); ImageGif ($im); ImageDestroy ($im); ? [pgl@redbox ~]# php s.php Segmentation