Make WordPress Core


Ignore:
Timestamp:
11/19/2006 07:56:05 AM (18 years ago)
Author:
ryan
Message:

Remove trailing spaces and convert spaces to tabs. Props Nazgul. fixes #986

File:
1 edited

Legend:

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

    r4494 r4495  
    143143
    144144function comments_link( $file = '', $echo = true ) {
    145     echo get_comments_link();
     145        echo get_comments_link();
    146146}
    147147
     
    241241    global $id;
    242242    if (!stristr($_SERVER['HTTP_USER_AGENT'], 'W3C_Validator')) {
    243     echo '<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
    244         xmlns:dc="http://purl.org/dc/elements/1.1/"
    245         xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
     243    echo '<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     244            xmlns:dc="http://purl.org/dc/elements/1.1/"
     245            xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
    246246        <rdf:Description rdf:about="';
    247247    the_permalink();
     
    266266function pings_open() {
    267267    global $post;
    268     if ( 'open' == $post->ping_status ) 
     268    if ( 'open' == $post->ping_status )
    269269        return true;
    270270    else
     
    300300
    301301function comments_popup_script($width=400, $height=400, $file='') {
    302     global $wpcommentspopupfile, $wptrackbackpopupfile, $wppingbackpopupfile, $wpcommentsjavascript;
     302        global $wpcommentspopupfile, $wptrackbackpopupfile, $wppingbackpopupfile, $wpcommentsjavascript;
    303303
    304304        if (empty ($file)) {
     
    308308        }
    309309
    310     $wpcommentsjavascript = 1;
    311     $javascript = "<script type='text/javascript'>\nfunction wpopen (macagna) {\n    window.open(macagna, '_blank', 'width=$width,height=$height,scrollbars=yes,status=yes');\n}\n</script>\n";
    312     echo $javascript;
     310        $wpcommentsjavascript = 1;
     311        $javascript = "<script type='text/javascript'>\nfunction wpopen (macagna) {\n    window.open(macagna, '_blank', 'width=$width,height=$height,scrollbars=yes,status=yes');\n}\n</script>\n";
     312        echo $javascript;
    313313}
    314314
Note: See TracChangeset for help on using the changeset viewer.