Make WordPress Core

Ticket #24689: 24689.patch

File 24689.patch, 1008 bytes (added by drayne, 11 years ago)
  • wp-includes/functions.php

     
    21102110        if ( isset( $r['back_link'] ) && $r['back_link'] ) {
    21112111                $back_text = $have_gettext? __('« Back') : '« Back';
    21122112                $message .= "\n<p><a href='javascript:history.back()'>$back_text</a></p>";
    2113         }
     2113        } else {
     2114                if ( is_user_logged_in() ) {
     2115                        $back_text = '&larr; Go to Dashboard ';
     2116                        $back_href = '/wp-admin/';
     2117                } else {
     2118                        $back_text = '&larr; Take Me Home';
     2119                        $back_href = '/';
     2120                }
     2121                $message .= "\n<p><a class='button button-large' href='" . $back_href . "' title='" . $back_text . "'>" . ($have_gettext ? __($back_text) : $back_text) . "</a></p>";
     2122        }
    21142123
    21152124        if ( ! did_action( 'admin_head' ) ) :
    21162125                if ( !headers_sent() ) {