]> granicus.if.org Git - php/commitdiff
Fix typo.
authorAndrei Zmievski <andrei@php.net>
Sat, 26 Feb 2000 16:21:29 +0000 (16:21 +0000)
committerAndrei Zmievski <andrei@php.net>
Sat, 26 Feb 2000 16:21:29 +0000 (16:21 +0000)
Zend/zend_execute.c

index 0e7277ca6c75d11f370a515efafd7980cd31ae24..b095af54b4361997d4a3aa7a86dec7dfc5d46e28 100644 (file)
@@ -1928,7 +1928,7 @@ send_by_ref:
                                        zend_str_tolower(class_name.value.str.val, class_name.value.str.len);
 
                                        if (zend_hash_find(EG(class_table), class_name.value.str.val, class_name.value.str.len+1, (void **) &ce)==FAILURE) {
-                                               zend_error(E_ERROR, "Cannot instanciate non-existant class:  %s", class_name.value.str.val);
+                                               zend_error(E_ERROR, "Cannot instantiate non-existant class:  %s", class_name.value.str.val);
                                        }
                                        object_init_ex(&Ts[opline->result.u.var].tmp_var, ce);
                                        Ts[opline->result.u.var].tmp_var.refcount=1;