summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtienne Kneuss <colder@php.net>2010-02-02 04:49:02 +0000
committerEtienne Kneuss <colder@php.net>2010-02-02 04:49:02 +0000
commitc716fca4fd9a459e64a63f9e48dc8de7060f02c9 (patch)
tree099e96b95d6b165f08a4911dd3771433ef04176c
parent497decc7e80a95f90432cf4659715a23f3c74566 (diff)
downloadphp-git-c716fca4fd9a459e64a63f9e48dc8de7060f02c9.tar.gz
Remove trailing dots
-rwxr-xr-xZend/zend_interfaces.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_interfaces.c b/Zend/zend_interfaces.c
index 3a4e2f3e4f..59c986a3c2 100755
--- a/Zend/zend_interfaces.c
+++ b/Zend/zend_interfaces.c
@@ -344,7 +344,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);
@@ -376,7 +376,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);