Make WordPress Core


Ignore:
Timestamp:
02/12/2010 08:14:17 PM (15 years ago)
Author:
ryan
Message:

Fix notices

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/general-template.php

    r13048 r13068  
    153153    else
    154154        $link = '<a href="' . esc_url( wp_logout_url($redirect) ) . '">' . __('Log out') . '</a>';
    155    
     155
    156156    if ( $echo )
    157157        echo apply_filters('loginout', $link);
     
    301301        $link = $before . '<a href="' . admin_url() . '">' . __('Site Admin') . '</a>' . $after;
    302302    }
    303    
     303
    304304    if ( $echo )
    305305        echo apply_filters('register', $link);
     
    10221022    $key = md5( $m . $monthnum . $year );
    10231023    if ( $cache = wp_cache_get( 'get_calendar', 'calendar' ) ) {
    1024         if ( is_array($cache) && isset( $cache[ $key ] ) ) {       
     1024        if ( is_array($cache) && isset( $cache[ $key ] ) ) {
    10251025            if ( $echo )
    10261026                echo apply_filters( 'get_calendar',  $cache[$key] );
    10271027            else
    1028                 return apply_filters( 'get_calendar',  $cache[$key] ); 
     1028                return apply_filters( 'get_calendar',  $cache[$key] );
    10291029        }
    10301030    }
     
    10881088    /* translators: Calendar caption: 1: month name, 2: 4-digit year */
    10891089    $calendar_caption = _x('%1$s %2$s', 'calendar caption');
    1090     $calendar_output .= '<table id="wp-calendar" summary="' . esc_attr__('Calendar') . '">
     1090    $calendar_output = '<table id="wp-calendar" summary="' . esc_attr__('Calendar') . '">
    10911091    <caption>' . sprintf($calendar_caption, $wp_locale->get_month($thismonth), date('Y', $unixmonth)) . '</caption>
    10921092    <thead>
     
    11041104        $calendar_output .= "\n\t\t<th scope=\"col\" title=\"$wd\">$day_name</th>";
    11051105    }
    1106    
     1106
    11071107    $calendar_output .= '
    11081108    </tr>
     
    12071207    $calendar_output .= "\n\t</tr>\n\t</tbody>\n\t</table>";
    12081208
    1209     $cache[ $key ] = $output;
     1209    $cache[ $key ] = $calendar_output;
    12101210    wp_cache_set( 'get_calendar', $cache, 'calendar' );
    12111211
Note: See TracChangeset for help on using the changeset viewer.