andi            Wed Mar 23 20:11:36 2005 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src/main       main.c 
  Log:
  - Fix typos
  
  
http://cvs.php.net/diff.php/php-src/main/main.c?r1=1.604.2.10&r2=1.604.2.11&ty=u
Index: php-src/main/main.c
diff -u php-src/main/main.c:1.604.2.10 php-src/main/main.c:1.604.2.11
--- php-src/main/main.c:1.604.2.10      Wed Mar 23 02:57:17 2005
+++ php-src/main/main.c Wed Mar 23 20:11:35 2005
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: main.c,v 1.604.2.10 2005/03/23 07:57:17 helly Exp $ */
+/* $Id: main.c,v 1.604.2.11 2005/03/24 01:11:35 andi Exp $ */
 
 /* {{{ includes
  */
@@ -662,11 +662,11 @@
                                break;
                        case E_NOTICE:
                        case E_USER_NOTICE:
-                               /* notices are no errors and are not treated as 
such like E_WARNIGNS */
+                               /* notices are no errors and are not treated as 
such like E_WARNINGS */
                                break;
                        default:
                                /* throw an exception if we are in EH_THROW mode
-                                * but DO NOT overwrite a pending excepption
+                                * but DO NOT overwrite a pending exception
                                 */
                                if (PG(error_handling) == EH_THROW && 
!EG(exception)) {
                                        
zend_throw_exception(PG(exception_class), buffer, 0 TSRMLS_CC);

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

Reply via email to