colder                                   Tue, 02 Feb 2010 04:49:02 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=294333

Log:
Remove trailing dots

Changed paths:
    U   php/php-src/branches/PHP_5_2/Zend/zend_interfaces.c
    U   php/php-src/branches/PHP_5_3/Zend/zend_interfaces.c
    U   php/php-src/trunk/Zend/zend_interfaces.c

Modified: php/php-src/branches/PHP_5_2/Zend/zend_interfaces.c
===================================================================
--- php/php-src/branches/PHP_5_2/Zend/zend_interfaces.c 2010-02-02 03:45:00 UTC 
(rev 294332)
+++ php/php-src/branches/PHP_5_2/Zend/zend_interfaces.c 2010-02-02 04:49:02 UTC 
(rev 294333)
@@ -344,7 +344,7 @@
                        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 @@
                } 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);

Modified: php/php-src/branches/PHP_5_3/Zend/zend_interfaces.c
===================================================================
--- php/php-src/branches/PHP_5_3/Zend/zend_interfaces.c 2010-02-02 03:45:00 UTC 
(rev 294332)
+++ php/php-src/branches/PHP_5_3/Zend/zend_interfaces.c 2010-02-02 04:49:02 UTC 
(rev 294333)
@@ -353,7 +353,7 @@
                        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 @@
                } 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);

Modified: php/php-src/trunk/Zend/zend_interfaces.c
===================================================================
--- php/php-src/trunk/Zend/zend_interfaces.c    2010-02-02 03:45:00 UTC (rev 
294332)
+++ php/php-src/trunk/Zend/zend_interfaces.c    2010-02-02 04:49:02 UTC (rev 
294333)
@@ -361,7 +361,7 @@
                        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 %v 
cannot implement both %v and %v at the same time.",
+                                               zend_error(E_ERROR, "Class %v 
cannot implement both %v and %v at the same time",
                                                                        
class_type->name,
                                                                        
interface->name,
                                                                        
zend_ce_iterator->name);
@@ -393,7 +393,7 @@
                } else {
                        /* c-level get_iterator cannot be changed */
                        if (class_type->get_iterator == 
zend_user_it_get_new_iterator) {
-                               zend_error(E_ERROR, "Class %v cannot implement 
both %v and %v at the same time.",
+                               zend_error(E_ERROR, "Class %v cannot implement 
both %v and %v at the same time",
                                                        class_type->name,
                                                        interface->name,
                                                        
zend_ce_aggregate->name);

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

Reply via email to