Ticket #5626: 5626.2.diff
File 5626.2.diff, 2.8 KB (added by , 17 years ago) |
---|
-
wp-admin/admin-footer.php
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> 10 10 <?php do_action('admin_footer', ''); ?> -
wp-admin/admin-header.php
38 38 ?> 39 39 </head> 40 40 <body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>"> 41 <div id="wpwrap"> 42 <div id="wpcontent"> 41 43 <div id="wphead"> 42 44 <h1><?php bloginfo('name'); ?> <span id="viewsite"><a href="<?php echo get_option('home') . '/'; ?>"><?php _e('Visit Site') ?></a></span></h1> 43 45 </div> … … 49 51 if ( $parent_file == 'options-general.php' ) { 50 52 require(ABSPATH . 'wp-admin/options-head.php'); 51 53 } 52 ?> 54 ?> 55 No newline at end of file -
wp-admin/includes/template.php
628 628 function browse_happy() { 629 629 $getit = __( 'WordPress recommends a better browser' ); 630 630 echo ' 631 <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>631 <p id="bh" style="float: right"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></p> 632 632 '; 633 633 } 634 634 635 635 if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) 636 add_action( ' admin_footer', 'browse_happy' );636 add_action( 'in_admin_footer', 'browse_happy' ); 637 637 638 638 function the_attachment_links( $id = false ) { 639 639 $id = (int) $id; -
wp-admin/wp-admin.css
1019 1019 1020 1020 /* Admin Footer */ 1021 1021 1022 html, body { 1023 height:100%; 1024 } 1025 #wpwrap { 1026 position: relative; 1027 min-height: 100%; 1028 } 1029 #wpcontent{ 1030 padding-bottom: 65px; 1031 } 1022 1032 #footer { 1023 1033 clear: both; 1024 1034 height: 65px; … … 1026 1036 margin: 0; 1027 1037 background: #464646 url('images/logo-ghost.png') no-repeat 20px 10px; 1028 1038 color: #999; 1039 position: relative; 1040 margin-top: -75px; 1029 1041 } 1030 1042 1031 1043 #footer a {