diff options
author | Felipe Pena <felipe@php.net> | 2009-11-21 19:43:00 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2009-11-21 19:43:00 +0000 |
commit | c8a266e674a00e3892c7e9d544dbee430a4c43b1 (patch) | |
tree | 447f02259b15ff56e1a3b04ca119b7ae6bfe8acb | |
parent | 2484e563e2738cd129ca8363381c24d22ec2ed96 (diff) | |
download | php-git-c8a266e674a00e3892c7e9d544dbee430a4c43b1.tar.gz |
- Fixed bug #50258 (typos in error strings)
-rw-r--r-- | ext/soap/php_encoding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_encoding.c b/ext/soap/php_encoding.c index 088f513098..3a4dd0ad51 100644 --- a/ext/soap/php_encoding.c +++ b/ext/soap/php_encoding.c @@ -375,7 +375,7 @@ static xmlNodePtr master_to_xml_int(encodePtr encode, zval *data, int style, xml char *stype_str = NULL, *ns_str = NULL; if (zend_hash_find(ht, "enc_type", sizeof("enc_type"), (void **)&ztype) == FAILURE) { - soap_error0(E_ERROR, "Encoding: SoapVar hasn't 'enc_type' propery"); + soap_error0(E_ERROR, "Encoding: SoapVar hasn't 'enc_type' property"); } if (zend_hash_find(ht, "enc_stype", sizeof("enc_stype"), (void **)&zstype) == SUCCESS) { |