summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2009-11-21 19:43:00 +0000
committerFelipe Pena <felipe@php.net>2009-11-21 19:43:00 +0000
commitf1d5433959eb539d0b29925a2a74b3adfba8fd2a (patch)
treedf1e67aa0654a8733f331963dc668d4dd2830d9e
parent0639396ac1a5cceb572fefb49227924eb673e668 (diff)
downloadphp-git-f1d5433959eb539d0b29925a2a74b3adfba8fd2a.tar.gz
- Fixed bug #50258 (typos in error strings)
-rw-r--r--ext/soap/php_encoding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_encoding.c b/ext/soap/php_encoding.c
index 0fb511c3fe..bb51f111ec 100644
--- a/ext/soap/php_encoding.c
+++ b/ext/soap/php_encoding.c
@@ -373,7 +373,7 @@ static xmlNodePtr master_to_xml_int(encodePtr encode, zval *data, int style, xml
HashTable *ht = Z_OBJPROP_P(data);
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) {