Changeset 6606
- Timestamp:
- 01/14/2008 03:16:56 AM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
-
admin-footer.php (modified) (1 diff)
-
admin-header.php (modified) (1 diff)
-
includes/template.php (modified) (1 diff)
-
wp-admin.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r6026 r6606 1 1 </div><!-- wpcontent --> 2 </div><!-- wpwrap --> 2 3 <div id="footer"> 3 4 <p><?php 4 5 do_action('in_admin_footer', ''); 5 6 $upgrade = apply_filters( 'update_footer', '' ); 6 7 echo __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>').' | '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>').' '.$upgrade; 7 8 8 ?></p> 9 9 </div> -
trunk/wp-admin/admin-header.php
r6588 r6606 37 37 </head> 38 38 <body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>"> 39 <div id="wpwrap"> 40 <div id="wpcontent"> 39 41 <div id="wphead"> 40 42 <h1><?php bloginfo('name'); ?> <span id="viewsite"><a href="<?php echo get_option('home') . '/'; ?>"><?php _e('Visit Site') ?></a></span></h1> -
trunk/wp-admin/includes/template.php
r6597 r6606 665 665 $getit = __( 'WordPress recommends a better browser' ); 666 666 echo ' 667 <p id="bh" style=" text-align: center;"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></p>667 <p id="bh" style="float: right"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></p> 668 668 '; 669 669 } 670 670 671 671 if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) 672 add_action( ' admin_footer', 'browse_happy' );672 add_action( 'in_admin_footer', 'browse_happy' ); 673 673 674 674 function the_attachment_links( $id = false ) { -
trunk/wp-admin/wp-admin.css
r6605 r6606 972 972 /* Admin Footer */ 973 973 974 html, body { 975 height:100%; 976 } 977 #wpwrap { 978 position: relative; 979 min-height: 100%; 980 } 981 #wpcontent{ 982 padding-bottom: 65px; 983 } 974 984 #footer { 975 985 clear: both; … … 979 989 background: #464646 url('images/logo-ghost.png') no-repeat 20px 10px; 980 990 color: #999; 991 position: relative; 992 margin-top: -75px; 981 993 } 982 994 … … 1306 1318 .ui-tabs-hide { display: none; } 1307 1319 .form-input-tip { color: #999; } 1320
Note: See TracChangeset
for help on using the changeset viewer.