From 191b52d2723d82a8aa623af471f1dbfab6a5ce3f Mon Sep 17 00:00:00 2001 From: Etienne Kneuss <colder@php.net> Date: Tue, 2 Feb 2010 04:49:02 +0000 Subject: [PATCH] Remove trailing dots --- Zend/zend_interfaces.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zend/zend_interfaces.c b/Zend/zend_interfaces.c index 5f9440fb90..517b116318 100755 --- a/Zend/zend_interfaces.c +++ b/Zend/zend_interfaces.c @@ -353,7 +353,7 @@ static int zend_implement_aggregate(zend_class_entry *interface, zend_class_entr if (class_type->num_interfaces) { for (i = 0; i < class_type->num_interfaces; i++) { if (class_type->interfaces[i] == zend_ce_iterator) { - zend_error(E_ERROR, "Class %s cannot implement both %s and %s at the same time.", + zend_error(E_ERROR, "Class %s cannot implement both %s and %s at the same time", class_type->name, interface->name, zend_ce_iterator->name); @@ -385,7 +385,7 @@ static int zend_implement_iterator(zend_class_entry *interface, zend_class_entry } else { /* c-level get_iterator cannot be changed */ if (class_type->get_iterator == zend_user_it_get_new_iterator) { - zend_error(E_ERROR, "Class %s cannot implement both %s and %s at the same time.", + zend_error(E_ERROR, "Class %s cannot implement both %s and %s at the same time", class_type->name, interface->name, zend_ce_aggregate->name); -- 2.40.0