Commit:    c3acefd9ea9f1c0b0900f75d05c14a1e6ab2b671
Author:    Joey Smith <joeysm...@gmail.com>         Tue, 8 Jan 2013 14:18:31 
-0700
Parents:   c41291feb9d8b713684331307147bbaef43bc22a
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=c3acefd9ea9f1c0b0900f75d05c14a1e6ab2b671

Log:
Fix a typo in the ZipArchive error messages

Changed paths:
  M  ext/zip/php_zip.c


Diff:
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c
index 727cc85..5fd470a 100644
--- a/ext/zip/php_zip.c
+++ b/ext/zip/php_zip.c
@@ -410,7 +410,7 @@ static int php_zip_parse_options(zval *options, long 
*remove_all_path,
                ze_zip_object *obj = (ze_zip_object*) 
zend_object_store_get_object(object TSRMLS_CC); \
                intern = obj->za; \
                if (!intern) { \
-                       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid or 
unitialized Zip object"); \
+                       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid or 
uninitialized Zip object"); \
                        RETURN_FALSE; \
                } \
        }


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to