iliaa           Tue Aug  9 13:58:04 2005 EDT

  Modified files:              
    /php-src/ext/standard       url.h 
  Log:
  Missing patch bit.
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/url.h?r1=1.20&r2=1.21&ty=u
Index: php-src/ext/standard/url.h
diff -u php-src/ext/standard/url.h:1.20 php-src/ext/standard/url.h:1.21
--- php-src/ext/standard/url.h:1.20     Wed Aug  3 10:08:14 2005
+++ php-src/ext/standard/url.h  Tue Aug  9 13:58:02 2005
@@ -15,7 +15,7 @@
    | Author: Jim Winstead <[EMAIL PROTECTED]>                                  
|
    +----------------------------------------------------------------------+
  */
-/* $Id: url.h,v 1.20 2005/08/03 14:08:14 sniper Exp $ */
+/* $Id: url.h,v 1.21 2005/08/09 17:58:02 iliaa Exp $ */
 
 #ifndef URL_H
 #define URL_H
@@ -46,6 +46,15 @@
 PHP_FUNCTION(rawurldecode);
 PHP_FUNCTION(get_headers);
 
+#define PHP_URL_SCHEME 0
+#define PHP_URL_HOST 1
+#define PHP_URL_PORT 2
+#define PHP_URL_USER 3
+#define PHP_URL_PASS 4
+#define PHP_URL_PATH 5
+#define PHP_URL_QUERY 6
+#define PHP_URL_FRAGMENT 7
+
 #endif /* URL_H */
 
 /*

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

Reply via email to