summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-01-15 10:08:34 +0000
committerAntony Dovgal <tony2001@php.net>2007-01-15 10:08:34 +0000
commit7b70e5be45b333fbc66d0c5f22504cd58dc5033b (patch)
treeb1cacf779756444d3badfeb5e9789994d8294521
parent9ca5652f7022c56a46ec9ef6e80b6d4c8c83116a (diff)
downloadphp-git-7b70e5be45b333fbc66d0c5f22504cd58dc5033b.tar.gz
missing comma
-rw-r--r--Zend/zend_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index 9aaf14db36..6d2338622f 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -1538,7 +1538,7 @@ void zend_do_pass_param(znode *param, zend_uchar op, int offset TSRMLS_DC)
"Call-time pass-by-reference has been deprecated; "
"If you would like to pass it by reference, modify the declaration of %s(). "
"If you would like to enable call-time pass-by-reference, you can set "
- "allow_call_time_pass_reference to true in your INI file. "
+ "allow_call_time_pass_reference to true in your INI file. ",
(function_ptr?function_ptr->common.function_name:"[runtime function name]"));
}