# HG changeset patch # User Dan # Date 1238899055 14400 # Node ID ddecc53004eef1c43411c27fe49ed52a769f351a # Parent d6b095673a475dd6f7b2990f6a6ce190a2ae6a0a UserPage: whoops, wrong name (Namespace_Default::$exists, not ::$page_exists); bumped userpage tabs down by 0.05em to correct an Oxygen bug diff -r d6b095673a47 -r ddecc53004ee includes/clientside/css/enano-shared.css --- a/includes/clientside/css/enano-shared.css Sat Apr 04 22:35:44 2009 -0400 +++ b/includes/clientside/css/enano-shared.css Sat Apr 04 22:37:35 2009 -0400 @@ -804,7 +804,7 @@ ul.userpage_links { position: absolute; - top: -3em; + top: -3.05em; padding-left: 10px; list-style-type: none !important; list-style-image: none !important; diff -r d6b095673a47 -r ddecc53004ee includes/namespaces/user.php --- a/includes/namespaces/user.php Sat Apr 04 22:35:44 2009 -0400 +++ b/includes/namespaces/user.php Sat Apr 04 22:37:35 2009 -0400 @@ -76,7 +76,7 @@ $target_username = preg_replace('/^' . str_replace('/', '\\/', preg_quote($paths->nslist['User'])) . '/', '', $target_username); list($target_username) = explode('/', $target_username); - if ( ( $page_name == str_replace('_', ' ', $this->page_id) || $page_name == $paths->nslist['User'] . str_replace('_', ' ', $this->page_id) ) || !$this->page_exists ) + if ( ( $page_name == str_replace('_', ' ', $this->page_id) || $page_name == $paths->nslist['User'] . str_replace('_', ' ', $this->page_id) ) || !$this->exists ) { $page_name = $lang->get('userpage_page_title', array('username' => $target_username)); }