Changeset 6066
- Timestamp:
- 09/10/2007 02:06:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-includes/vars.php
r3991 r6066 2 2 3 3 // On which page are we ? 4 if (preg_match('#([^/]+\.php)$#', $PHP_SELF, $self_matches)) { 4 if ( is_admin() ) { 5 // wp-admin pages are checked more carefully 6 preg_match('#/wp-admin/?(.*?)$#i', $PHP_SELF, $self_matches); 5 7 $pagenow = $self_matches[1]; 6 } else if (strstr($PHP_SELF, '?')) { 7 $pagenow = explode('/', $PHP_SELF); 8 $pagenow = trim($pagenow[(sizeof($pagenow)-1)]); 9 $pagenow = explode('?', $pagenow); 10 $pagenow = $pagenow[0]; 8 $pagenow = preg_replace('#\?.*?$#', '', $pagenow); 9 if ( '' === $pagenow || 'index' === $pagenow || 'index.php' === $pagenow ) { 10 $pagenow = 'index.php'; 11 } else { 12 preg_match('#(.*?)(/|$)#', $pagenow, $self_matches); 13 $pagenow = strtolower($self_matches[1]); 14 if ( '.php' !== substr($pagenow, -4, 4) ) 15 $pagenow .= '.php'; // for Options +Multiviews: /wp-admin/themes/index.php (themes.php is queried) 16 } 11 17 } else { 12 $pagenow = 'index.php'; 18 if ( preg_match('#([^/]+\.php)([?/].*?)?$#i', $PHP_SELF, $self_matches) ) 19 $pagenow = strtolower($self_matches[1]); 20 else 21 $pagenow = 'index.php'; 13 22 } 14 23
Note: See TracChangeset
for help on using the changeset viewer.