Make WordPress Core

Ticket #20120: br-spaces.diff

File br-spaces.diff, 9.0 KB (added by bananastalktome, 13 years ago)
  • wp-admin/custom-background.php

     
    219219<td>
    220220<form method="post" action="">
    221221<?php wp_nonce_field('custom-background-remove', '_wpnonce-custom-background-remove'); ?>
    222 <?php submit_button( __( 'Remove Background Image' ), 'button', 'remove-background', false ); ?><br/>
     222<?php submit_button( __( 'Remove Background Image' ), 'button', 'remove-background', false ); ?><br />
    223223<?php _e('This will remove the background image. You will not be able to restore any customizations.') ?>
    224224</form>
    225225</td>
     
    232232<td>
    233233<form method="post" action="">
    234234<?php wp_nonce_field('custom-background-reset', '_wpnonce-custom-background-reset'); ?>
    235 <?php submit_button( __( 'Restore Original Image' ), 'button', 'reset-background', false ); ?><br/>
     235<?php submit_button( __( 'Restore Original Image' ), 'button', 'reset-background', false ); ?><br />
    236236<?php _e('This will restore the original background image. You will not be able to restore any customizations.') ?>
    237237</form>
    238238</td>
  • wp-admin/edit-comments.php

     
    218218                        }
    219219                }
    220220
    221                 echo '<div id="moderated" class="updated"><p>' . implode( "<br/>\n", $messages ) . '</p></div>';
     221                echo '<div id="moderated" class="updated"><p>' . implode( "<br />\n", $messages ) . '</p></div>';
    222222        }
    223223}
    224224?>
  • wp-admin/includes/class-wp-filesystem-base.php

     
    209209                                //Lets try that folder:
    210210                                $newdir = trailingslashit(path_join($base, $key));
    211211                                if ( $this->verbose )
    212                                         printf( __('Changing to %s') . '<br/>', $newdir );
     212                                        printf( __('Changing to %s') . '<br />', $newdir );
    213213                                if ( $ret = $this->search_for_folder( $folder, $newdir, $loop) )
    214214                                        return $ret;
    215215                        }
     
    218218                //Only check this as a last resort, to prevent locating the incorrect install. All above procedures will fail quickly if this is the right branch to take.
    219219                if (isset( $files[ $last_path ] ) ) {
    220220                        if ( $this->verbose )
    221                                 printf( __('Found %s') . '<br/>',  $base . $last_path );
     221                                printf( __('Found %s') . '<br />',  $base . $last_path );
    222222                        return trailingslashit($base . $last_path);
    223223                }
    224224                if ( $loop )
  • wp-admin/includes/class-wp-ms-users-list-table.php

     
    183183                                                        if ( in_array( $user->user_login, $super_admins ) )
    184184                                                                echo ' - ' . __( 'Super Admin' );
    185185                                                        ?></strong>
    186                                                         <br/>
     186                                                        <br />
    187187                                                        <?php
    188188                                                                $actions = array();
    189189                                                                $actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
     
    252252                                                                                ( $i == $action_count ) ? $sep = '' : $sep = ' | ';
    253253                                                                                echo "<span class='$action'>$link$sep</span>";
    254254                                                                        }
    255                                                                         echo '</small></span><br/>';
     255                                                                        echo '</small></span><br />';
    256256                                                                }
    257257                                                        }
    258258                                                        ?>
  • wp-admin/includes/class-wp-plugins-list-table.php

     
    333333                        $dropins = _get_dropins();
    334334                        $plugin_name = $plugin_file;
    335335                        if ( $plugin_file != $plugin_data['Name'] )
    336                                 $plugin_name .= '<br/>' . $plugin_data['Name'];
     336                                $plugin_name .= '<br />' . $plugin_data['Name'];
    337337                        if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant
    338338                                $is_active = true;
    339339                                $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
  • wp-admin/includes/ms.php

     
    578578        }
    579579        if ( $out != '' ) {
    580580                $msg  = __( 'Warning! WordPress encrypts user cookies, but you must add the following lines to <strong>wp-config.php</strong> for it to be more secure.' );
    581                 $msg .= '<br/>' . __( "Before the line <code>/* That's all, stop editing! Happy blogging. */</code> please add this code:" );
    582                 $msg .= "<br/><br/><code>$out</code>";
     581                $msg .= '<br />' . __( "Before the line <code>/* That's all, stop editing! Happy blogging. */</code> please add this code:" );
     582                $msg .= "<br /><br /><code>$out</code>";
    583583
    584584                echo "<div class='update-nag'>$msg</div>";
    585585        }
  • wp-admin/network/settings.php

     
    322322                        $menu_perms = get_site_option( 'menu_items' );
    323323                        $menu_items = apply_filters( 'mu_menu_items', array( 'plugins' => __( 'Plugins' ) ) );
    324324                        foreach ( (array) $menu_items as $key => $val ) {
    325                                 echo "<label><input type='checkbox' name='menu_items[" . $key . "]' value='1'" . ( isset( $menu_perms[$key] ) ? checked( $menu_perms[$key], '1', false ) : '' ) . " /> " . esc_html( $val ) . "</label><br/>";
     325                                echo "<label><input type='checkbox' name='menu_items[" . $key . "]' value='1'" . ( isset( $menu_perms[$key] ) ? checked( $menu_perms[$key], '1', false ) : '' ) . " /> " . esc_html( $val ) . "</label><br />";
    326326                        }
    327327                        ?>
    328328                                </td>
  • wp-admin/network/site-info.php

     
    162162                        <td>
    163163                        <?php foreach ( $attribute_fields as $field_key => $field_label ) : ?>
    164164                                <label><input type="checkbox" name="blog[<?php echo $field_key; ?>]" value="1" <?php checked( (bool) $details->$field_key, true ); disabled( ! in_array( $details->$field_key, array( 0, 1 ) ) ); ?> />
    165                                 <?php echo $field_label; ?></label><br/>
     165                                <?php echo $field_label; ?></label><br />
    166166                        <?php endforeach; ?>
    167167                        </td>
    168168                </tr>
  • wp-admin/options-privacy.php

     
    4343<th scope="row"><?php _e( 'Site Visibility' ); ?> </th>
    4444<td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Site Visibility' ); ?> </span></legend>
    4545<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
    46 <label for="blog-public"><?php _e( 'Allow search engines to index this site.' );?></label><br/>
     46<label for="blog-public"><?php _e( 'Allow search engines to index this site.' );?></label><br />
    4747<input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
    4848<label for="blog-norobots"><?php _e( 'Ask search engines not to index this site.' ); ?></label>
    4949<p class="description"><?php _e( 'Note: Neither of these options blocks access to your site &mdash; it is up to search engines to honor your request.' ); ?></p>
  • wp-admin/themes.php

     
    202202                &nbsp;
    203203                <small><a id="mini-filter-click" href="<?php echo esc_url( remove_query_arg( array('filter', 'features', 'submit') ) ); ?>"><?php _e( 'Close filters' )?></a></small>
    204204        </div>
    205         <br/>
     205        <br />
    206206        </div>
    207207        <br class="clear"/>
    208208</div>
  • wp-includes/default-widgets.php

     
    262262                <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
    263263                <p>
    264264                        <input class="checkbox" type="checkbox" <?php echo $dropdown; ?> id="<?php echo $this->get_field_id('dropdown'); ?>" name="<?php echo $this->get_field_name('dropdown'); ?>" /> <label for="<?php echo $this->get_field_id('dropdown'); ?>"><?php _e('Display as dropdown'); ?></label>
    265                         <br/>
     265                        <br />
    266266                        <input class="checkbox" type="checkbox" <?php echo $count; ?> id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" /> <label for="<?php echo $this->get_field_id('count'); ?>"><?php _e('Show post counts'); ?></label>
    267267                </p>
    268268<?php