Changeset 3474
- Timestamp:
- 01/23/2006 11:42:25 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r3468 r3474 2044 2044 $ret = ''; 2045 2045 if ( is_array(func_get_arg(0)) ) { 2046 $uri = @func_get_arg(1); 2046 if ( @func_num_args() < 2 ) 2047 $uri = $_SERVER['REQUEST_URI']; 2048 else 2049 $uri = @func_get_arg(1); 2047 2050 } else { 2048 2051 if ( @func_num_args() < 3 )
Note: See TracChangeset
for help on using the changeset viewer.