diff options
author | Derick Rethans <derick@php.net> | 2002-07-06 11:18:47 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-07-06 11:18:47 +0000 |
commit | 7cdd6a6bb5b67735a8df896079ceb2bd7fb7e1c4 (patch) | |
tree | b926f4d1800269f22057b907a716f795a6e75fbe /ext/rpc/xmlrpc/xmlrpc-epi-php.c | |
parent | e8c76f21ad1b027ed11186a5488c55d4742d36d8 (diff) | |
download | php-git-7cdd6a6bb5b67735a8df896079ceb2bd7fb7e1c4.tar.gz |
- Consistent error messages
Diffstat (limited to 'ext/rpc/xmlrpc/xmlrpc-epi-php.c')
-rw-r--r-- | ext/rpc/xmlrpc/xmlrpc-epi-php.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/rpc/xmlrpc/xmlrpc-epi-php.c b/ext/rpc/xmlrpc/xmlrpc-epi-php.c index cc4c483b37..8df12e8aa7 100644 --- a/ext/rpc/xmlrpc/xmlrpc-epi-php.c +++ b/ext/rpc/xmlrpc/xmlrpc-epi-php.c @@ -1488,7 +1488,7 @@ PHP_FUNCTION(xmlrpc_is_fault) } if (Z_TYPE_P(arg) != IS_ARRAY) { - php_error(E_NOTICE, "%s() expects argument to be an array", get_active_function_name(TSRMLS_C)); + php_error(E_NOTICE, "%s(): Array argument expected", get_active_function_name(TSRMLS_C)); } else { /* The "correct" way to do this would be to call the xmlrpc |