Make WordPress Core


Ignore:
Timestamp:
09/20/2009 01:49:20 PM (16 years ago)
Author:
westi
Message:

Switch round some quotes. Fixes #10669 props niallkennedy

File:
1 edited

Legend:

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

    r11827 r11953  
    133133    echo '<form action="" method="post" class="dashboard-widget-control-form">';
    134134    wp_dashboard_trigger_widget_control( $meta_box['id'] );
    135     echo "<p class='submit'><input type='hidden' name='widget_id' value='" . esc_attr($meta_box['id']) . "' /><input type='submit' value='" . esc_attr__( 'Submit' ) . "' /></p>";
     135    echo '<p class="submit"><input type="hidden" name="widget_id" value="' . esc_attr($meta_box['id']) . '" /><input type="submit" value="' . esc_attr__( 'Submit' ) . '" /></p>';
    136136
    137137    echo '</form>';
     
    164164    }
    165165?>
    166 <div id='dashboard-widgets' class='metabox-holder'>
     166<div id="dashboard-widgets" class="metabox-holder">
    167167<?php
    168168    echo "\t<div class='postbox-container' style='$width'>\n";
     
    180180</div></div>
    181181
    182 <form style='display: none' method='get' action=''>
     182<form style="display:none" method="get" action="">
    183183    <p>
    184184<?php
     
    567567
    568568            <div class="dashboard-comment-wrap">
    569             <h4 class="comment-meta"><?php printf( __( 'From %1$s on %2$s%3$s' ), '<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link." ".$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?></h4>
     569            <h4 class="comment-meta"><?php printf( __( 'From %1$s on %2$s%3$s' ), '<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?></h4>
    570570
    571571            <?php
     
    698698function wp_dashboard_rss_output( $widget_id ) {
    699699    $widgets = get_option( 'dashboard_widget_options' );
    700     echo "<div class='rss-widget'>";
     700    echo '<div class="rss-widget">';
    701701    wp_widget_rss_output( $widgets[$widget_id] );
    702702    echo "</div>";
Note: See TracChangeset for help on using the changeset viewer.