]> granicus.if.org Git - php/commitdiff
- Invalid -> Undefined
authorAndi Gutmans <andi@php.net>
Sat, 29 Jun 2002 16:01:40 +0000 (16:01 +0000)
committerAndi Gutmans <andi@php.net>
Sat, 29 Jun 2002 16:01:40 +0000 (16:01 +0000)
Zend/zend_execute_API.c

index e7515c60c0a714c389bb61257e8f8b56e08ce574..efa5cafee9db757932bffe6afd9e71332ae98ea2 100644 (file)
@@ -337,7 +337,7 @@ ZEND_API int zval_update_constant(zval **pp, void *arg TSRMLS_DC)
                        last = tsrm_strtok_r(p->value.str.val, ":", &temp);
 
                        if (zend_lookup_class(last, strlen(last), &ce TSRMLS_CC) == FAILURE) {
-                               zend_error(E_ERROR, "Invalid class '%s'", last);
+                               zend_error(E_ERROR, "Undefined class '%s'", last);
                        }
                        
                        last = tsrm_strtok_r(NULL, ":", &temp);
@@ -348,12 +348,12 @@ ZEND_API int zval_update_constant(zval **pp, void *arg TSRMLS_DC)
                                        break;
                                }
                                if (zend_hash_find(&(*ce)->class_table, last, strlen(last)+1, (void **)&ce) == FAILURE) {
-                                       zend_error(E_ERROR, "Invalid sub-class '%s'", last);
+                                       zend_error(E_ERROR, "Undefined sub-class '%s'", last);
                                }
                                last = cur;
                        }
                        if (zend_hash_find(&(*ce)->constants_table, last, strlen(last)+1, (void **) &value) == FAILURE) {
-                               zend_error(E_ERROR, "Invalid class constant '%s'", last);
+                               zend_error(E_ERROR, "Undefined class constant '%s'", last);
                        }
                        const_value = **value;
                        zval_copy_ctor(&const_value);