1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00

fix #35539 (typo in error message for ErrorException)

This commit is contained in:
Antony Dovgal
2005-12-04 11:45:45 +00:00
parent c7631a2dca
commit ced6ef40cd
+2 -2
View File
@@ -132,7 +132,7 @@ ZEND_METHOD(exception, __construct)
zend_uchar message_type;
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, argc TSRMLS_CC, "|tl", &message, &message_len, &message_type, &code) == FAILURE) {
zend_error(E_ERROR, "Wrong parameter count for exception([string $exception [, long $code ]])");
zend_error(E_ERROR, "Wrong parameter count for Exception([string $exception [, long $code ]])");
}
object = getThis();
@@ -171,7 +171,7 @@ ZEND_METHOD(error_exception, __construct)
zend_uchar message_type, file_type;
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, argc TSRMLS_CC, "|tlltl", &message, &message_len, &message_type, &code, &severity, &filename, &filename_len, &file_type, &lineno) == FAILURE) {
zend_error(E_ERROR, "Wrong parameter count for exception([string $exception [, long $code ]])");
zend_error(E_ERROR, "Wrong parameter count for ErrorException([string $exception [, long $code ]])");
}
object = getThis();