Make WordPress Core


Ignore:
Timestamp:
01/15/2010 10:11:12 PM (15 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

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

    r12459 r12733  
    637637    if ( !$rss->get_item_quantity() ) {
    638638        echo '<p>' . __('This dashboard widget queries <a href="http://blogsearch.google.com/">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links&hellip; yet. It&#8217;s okay &#8212; there is no rush.') . "</p>\n";
    639         $rss->__destruct(); 
     639        $rss->__destruct();
    640640        unset($rss);
    641641        return;
     
    692692
    693693    echo "</ul>\n";
    694     $rss->__destruct(); 
     694    $rss->__destruct();
    695695    unset($rss);
    696696}
     
    749749        }
    750750    } elseif ( !$rss->get_item_quantity() ) {
    751         $rss->__destruct(); 
     751        $rss->__destruct();
    752752        unset($rss);
    753753        return false;
     
    756756        wp_widget_rss_output( $rss, $widgets['dashboard_secondary'] );
    757757        echo '</div>';
    758         $rss->__destruct(); 
     758        $rss->__destruct();
    759759        unset($rss);
    760760    }
     
    840840        echo "<h5><a href='$link'>$title</a></h5>&nbsp;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span>\n";
    841841        echo "<p>$description</p>\n";
    842        
     842
    843843        $$feed->__destruct();
    844844        unset($$feed);
     
    939939                $widget_options[$widget_id]['title'] = htmlentities(__('Unknown Feed'));
    940940            } else {
    941                 $widget_options[$widget_id]['title'] = htmlentities(strip_tags($rss->get_title())); 
     941                $widget_options[$widget_id]['title'] = htmlentities(strip_tags($rss->get_title()));
    942942                $rss->__destruct();
    943                 unset($rss);               
     943                unset($rss);
    944944            }
    945945        }
Note: See TracChangeset for help on using the changeset viewer.