derick          Tue Jan 29 20:12:53 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/date   php_date.c 
  Log:
  - Make whitespace the same as in HEAD.
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/date/php_date.c?r1=1.43.2.45.2.51.2.16&r2=1.43.2.45.2.51.2.17&diff_format=u
Index: php-src/ext/date/php_date.c
diff -u php-src/ext/date/php_date.c:1.43.2.45.2.51.2.16 
php-src/ext/date/php_date.c:1.43.2.45.2.51.2.17
--- php-src/ext/date/php_date.c:1.43.2.45.2.51.2.16     Mon Jan 28 21:12:41 2008
+++ php-src/ext/date/php_date.c Tue Jan 29 20:12:53 2008
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_date.c,v 1.43.2.45.2.51.2.16 2008/01/28 21:12:41 derick Exp $ */
+/* $Id: php_date.c,v 1.43.2.45.2.51.2.17 2008/01/29 20:12:53 derick Exp $ */
 
 #include "php.h"
 #include "php_streams.h"
@@ -221,15 +221,16 @@
 };
 
 const zend_function_entry date_funcs_timezone[] = {
-       PHP_ME(DateTimeZone,                            __construct,            
                NULL, ZEND_ACC_CTOR|ZEND_ACC_PUBLIC)
-       PHP_ME_MAPPING(getName,                         timezone_name_get,      
                NULL, 0)
-       PHP_ME_MAPPING(getOffset,                       timezone_offset_get,    
        NULL, 0)
-       PHP_ME_MAPPING(getTransitions,          timezone_transitions_get,       
NULL, 0)
-       PHP_ME_MAPPING(listAbbreviations,       timezone_abbreviations_list, 
NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
-       PHP_ME_MAPPING(listIdentifiers,         timezone_identifiers_list,      
NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+       PHP_ME(DateTimeZone,              __construct,                 NULL, 
ZEND_ACC_CTOR|ZEND_ACC_PUBLIC)
+       PHP_ME_MAPPING(getName,           timezone_name_get,           NULL, 0)
+       PHP_ME_MAPPING(getOffset,         timezone_offset_get,         NULL, 0)
+       PHP_ME_MAPPING(getTransitions,    timezone_transitions_get,    NULL, 0)
+       PHP_ME_MAPPING(listAbbreviations, timezone_abbreviations_list, NULL, 
ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+       PHP_ME_MAPPING(listIdentifiers,   timezone_identifiers_list,   NULL, 
ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
        {NULL, NULL, NULL}
 };
 
+static char* guess_timezone(const timelib_tzdb *tzdb TSRMLS_DC);
 static void date_register_classes(TSRMLS_D);
 static char* guess_timezone(const timelib_tzdb *tzdb TSRMLS_DC);
 /* }}} */
@@ -1152,7 +1153,7 @@
                timelib_time_dtor(now); 
                RETURN_FALSE;
        }
-       
+
        t = timelib_strtotime(times, time_len, &error, DATE_TIMEZONEDB);
        error1 = error->error_count;
        timelib_error_container_dtor(error);

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

Reply via email to