mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
- Make key() and current() functions work by reference
- Bump PORTREVISION PR: ports/88481 Submitted by: Matthew Luckie <mjl@luckie.org.nz> Obtained from: PHP CVS
This commit is contained in:
parent
adea894c71
commit
f60c3c0a79
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=147193
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= php4
|
||||
PORTVERSION= 4.4.1
|
||||
PORTREVISION?= 0
|
||||
PORTREVISION?= 1
|
||||
CATEGORIES?= lang devel www
|
||||
MASTER_SITES= ${MASTER_SITE_PHP:S,$,:release,} \
|
||||
http://downloads.php.net/ilia/:rc \
|
||||
|
13
lang/php4/files/patch-ext_standard_basic_functions.c
Normal file
13
lang/php4/files/patch-ext_standard_basic_functions.c
Normal file
@ -0,0 +1,13 @@
|
||||
--- ext/standard/basic_functions.c.orig Fri Nov 4 09:30:04 2005
|
||||
+++ ext/standard/basic_functions.c Fri Nov 4 09:30:56 2005
|
||||
@@ -802,8 +802,8 @@
|
||||
PHP_FE(prev, first_arg_force_ref)
|
||||
PHP_FE(next, first_arg_force_ref)
|
||||
PHP_FE(reset, first_arg_force_ref)
|
||||
- PHP_FE(current, NULL)
|
||||
- PHP_FE(key, NULL)
|
||||
+ PHP_FE(current, first_arg_force_ref)
|
||||
+ PHP_FE(key, first_arg_force_ref)
|
||||
PHP_FE(min, NULL)
|
||||
PHP_FE(max, NULL)
|
||||
PHP_FE(in_array, NULL)
|
Loading…
Reference in New Issue
Block a user