Skip to content

Commit

Permalink
- Fixed bug #50258 (typos in error strings)
Browse files Browse the repository at this point in the history
  • Loading branch information
felipensp committed Nov 21, 2009
1 parent 0639396 commit f1d5433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/soap/php_encoding.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit f1d5433

Please sign in to comment.