Changeset 23537 for trunk/wp-includes/link-template.php
- Timestamp:
- 02/28/2013 09:04:26 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r23527 r23537 1920 1920 $url = set_url_scheme( $url, $scheme ); 1921 1921 1922 if ( ! empty( $path ) && is_string( $path ) && strpos( $path, '..' ) === false)1922 if ( $path && is_string( $path ) ) 1923 1923 $url .= '/' . ltrim( $path, '/' ); 1924 1924 … … 1972 1972 $url = set_url_scheme( $url, $scheme ); 1973 1973 1974 if ( ! empty( $path ) && is_string( $path ) && strpos( $path, '..' ) === false)1974 if ( $path && is_string( $path ) ) 1975 1975 $url .= '/' . ltrim( $path, '/' ); 1976 1976 … … 2006 2006 $url = get_site_url($blog_id, 'wp-admin/', $scheme); 2007 2007 2008 if ( !empty( $path ) && is_string( $path ) && strpos( $path, '..' ) === false)2008 if ( $path && is_string( $path ) ) 2009 2009 $url .= ltrim( $path, '/' ); 2010 2010 … … 2024 2024 $url = site_url() . '/' . WPINC . '/'; 2025 2025 2026 if ( !empty($path) && is_string($path) && strpos($path, '..') === false)2026 if ( $path && is_string( $path ) ) 2027 2027 $url .= ltrim($path, '/'); 2028 2028 … … 2042 2042 $url = set_url_scheme( WP_CONTENT_URL ); 2043 2043 2044 if ( !empty($path) && is_string($path) && strpos($path, '..') === false)2044 if ( $path && is_string( $path ) ) 2045 2045 $url .= '/' . ltrim($path, '/'); 2046 2046 … … 2081 2081 } 2082 2082 2083 if ( !empty($path) && is_string($path) && strpos($path, '..') === false)2083 if ( $path && is_string( $path ) ) 2084 2084 $url .= '/' . ltrim($path, '/'); 2085 2085 … … 2112 2112 $url = set_url_scheme( 'http://' . $current_site->domain . $current_site->path, $scheme ); 2113 2113 2114 if ( ! empty( $path ) && is_string( $path ) && strpos( $path, '..' ) === false)2114 if ( $path && is_string( $path ) ) 2115 2115 $url .= ltrim( $path, '/' ); 2116 2116 … … 2148 2148 $url = set_url_scheme( 'http://' . $current_site->domain . $current_site->path, $scheme ); 2149 2149 2150 if ( ! empty( $path ) && is_string( $path ) && strpos( $path, '..' ) === false)2150 if ( $path && is_string( $path ) ) 2151 2151 $url .= ltrim( $path, '/' ); 2152 2152 … … 2170 2170 $url = network_site_url('wp-admin/network/', $scheme); 2171 2171 2172 if ( !empty($path) && is_string($path) && strpos($path, '..') === false)2172 if ( $path && is_string( $path ) ) 2173 2173 $url .= ltrim($path, '/'); 2174 2174 … … 2189 2189 $url = network_site_url('wp-admin/user/', $scheme); 2190 2190 2191 if ( !empty($path) && is_string($path) && strpos($path, '..') === false)2191 if ( $path && is_string( $path ) ) 2192 2192 $url .= ltrim($path, '/'); 2193 2193
Note: See TracChangeset
for help on using the changeset viewer.