Make WordPress Core


Ignore:
Timestamp:
11/17/2010 06:47:34 PM (14 years ago)
Author:
ryan
Message:

Pinking shears

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-wp-admin-bar.php

    r16309 r16438  
    1414
    1515        /* Set the protocol used throughout this code */
    16         if ( is_ssl() ) 
     16        if ( is_ssl() )
    1717            $this->proto = 'https://';
    1818
     
    9898            <div id="adminbarsearch-wrap">
    9999                <form action="<?php echo home_url(); ?>" method="get" id="adminbarsearch">
    100                     <input class="adminbar-input" name="s" id="adminbar-search" type="text" title="<?php esc_attr_e( 'Search' ); ?>" value="" maxlength="150" /> 
     100                    <input class="adminbar-input" name="s" id="adminbar-search" type="text" title="<?php esc_attr_e( 'Search' ); ?>" value="" maxlength="150" />
    101101                    <button type="submit" class="adminbar-button"><span><?php _e('Search'); ?></span></button>
    102102                </form>
     
    113113        <?php $menuclass = ( ! empty( $menu_item['children'] ) ) ? 'menupop ' : ''; ?>
    114114
    115         <li class="<?php echo $menuclass . "ab-$id" ?><?php 
    116             if ( ! empty( $menu_item['meta']['class'] ) ) : 
     115        <li class="<?php echo $menuclass . "ab-$id" ?><?php
     116            if ( ! empty( $menu_item['meta']['class'] ) ) :
    117117                echo ' ' . $menu_item['meta']['class'];
    118             endif; 
     118            endif;
    119119        ?>">
    120             <a href="<?php echo strip_tags( $menu_item['href'] ) ?>"<?php 
     120            <a href="<?php echo strip_tags( $menu_item['href'] ) ?>"<?php
    121121                if ( ! empty( $menu_item['meta']['onclick'] ) ) :
    122                     ?> onclick="<?php echo $menu_item['meta']['onclick']; ?>"<?php 
     122                    ?> onclick="<?php echo $menu_item['meta']['onclick']; ?>"<?php
    123123                endif;
    124124            if ( ! empty( $menu_item['meta']['target'] ) ) :
    125                 ?> target="<?php echo $menu_item['meta']['target']; ?>"<?php 
    126             endif; 
    127            
    128             ?>><?php 
    129            
    130             if ( ! empty( $menuclass ) ) : 
    131                 ?><span><?php 
    132             endif; 
    133            
     125                ?> target="<?php echo $menu_item['meta']['target']; ?>"<?php
     126            endif;
     127
     128            ?>><?php
     129
     130            if ( ! empty( $menuclass ) ) :
     131                ?><span><?php
     132            endif;
     133
    134134            echo $menu_item['title'];
    135            
    136             if ( ! empty( $menuclass ) ) : 
    137                 ?></span><?php 
    138             endif; 
    139            
     135
     136            if ( ! empty( $menuclass ) ) :
     137                ?></span><?php
     138            endif;
     139
    140140            ?></a>
    141141
     
    165165                $this->add_node( $parent_id, $menu->{$id}['children'], $child );
    166166        }
    167        
     167
    168168        $child = null;
    169169
     
    205205    function load_user_locale_translations() {
    206206        $this->need_to_change_locale = ( get_locale() != $this->user->locale );
    207         if ( ! $this->need_to_change_locale ) 
     207        if ( ! $this->need_to_change_locale )
    208208            return;
    209209        /*
     
    219219    function unload_user_locale_translations() {
    220220        global $l10n;
    221         if ( ! $this->changed_locale ) 
     221        if ( ! $this->changed_locale )
    222222            return;
    223223        /*
Note: See TracChangeset for help on using the changeset viewer.