Make WordPress Core


Ignore:
Timestamp:
02/20/2004 01:42:39 AM (21 years ago)
Author:
michelvaldrighi
Message:

more double-to-single quotes replacements

File:
1 edited

Legend:

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

    r894 r895  
    3636
    3737    switch($show) {
    38         case "url":
    39             $output = $siteurl."/".$blogfilename;
    40             break;
    41         case "description":
     38        case 'url':
     39            $output = $siteurl.'/'.$blogfilename;
     40            break;
     41        case 'description':
    4242            $output = $blogdescription;
    4343            break;
    44         case "rdf_url":
     44        case 'rdf_url':
    4545            $output = $siteurl.'/wp-rdf.php';
    4646            if ($do_perma) {
     
    4848            }
    4949            break;
    50         case "rss_url":
     50        case 'rss_url':
    5151            $output = $siteurl.'/wp-rss.php';
    5252            if ($do_perma) {
     
    5454            }
    5555            break;
    56         case "rss2_url":
     56        case 'rss2_url':
    5757            $output = $siteurl.'/wp-rss2.php';
    5858            if ($do_perma) {
     
    6060            }
    6161            break;
    62         case "atom_url":
     62        case 'atom_url':
    6363            $output = $siteurl.'/wp-atom.php';
    6464            if ($do_perma) {
     
    6666            }
    6767            break;       
    68         case "comments_rss2_url":
     68        case 'comments_rss2_url':
    6969            $output = $siteurl.'/wp-commentsrss2.php';
    7070            if ($do_perma) {
     
    7272            }
    7373            break;
    74         case "pingback_url":
     74        case 'pingback_ur'":
    7575            $output = $siteurl.'/xmlrpc.php';
    7676            break;
    77         case "admin_email":
     77        case 'admin_email':
    7878            $output = $admin_email;
    7979            break;
    80         case "name":
     80        case 'name':
    8181        default:
    8282            $output = $blogname;
     
    214214    if ('' != $limit) {
    215215        $limit = (int) $limit;
    216         $limit = " LIMIT $limit";
     216        $limit = ' LIMIT '.$limit;
    217217    }
    218218    // this is what will separate dates on weekly archive links
     
    248248                $url  = get_month_link($arcresult->year,   $arcresult->month);
    249249                if ($show_post_count) {
    250                     $text = sprintf("%s %d", $month[zeroise($arcresult->month,2)], $arcresult->year);
    251                     $after = " ($arcresult->posts)";
     250                    $text = sprintf('%s %d', $month[zeroise($arcresult->month,2)], $arcresult->year);
     251                    $after = ' ('.$arcresult->posts.')';
    252252                } else {
    253                     $text = sprintf("%s %d", $month[zeroise($arcresult->month,2)], $arcresult->year);
     253                    $text = sprintf('%s %d', $month[zeroise($arcresult->month,2)], $arcresult->year);
    254254                }
    255255                echo get_archives_link($url, $text, $format, $before, $after);
     
    280280                    $arc_week_start = date_i18n($archive_week_start_date_format, $arc_week['start']);
    281281                    $arc_week_end = date_i18n($archive_week_end_date_format, $arc_week['end']);
    282                     $url  = sprintf("%s/%s%sm%s%s%sw%s%d", $siteurl, $blogfilename, $querystring_start,
     282                    $url  = sprintf('%s/%s%sm%s%s%sw%s%d', $siteurl, $blogfilename, $querystring_start,
    283283                                    $querystring_equal, $arc_year, $querystring_separator,
    284284                                    $querystring_equal, $arcresult->week);
     
    460460            echo '<td id="today">';
    461461        else
    462             echo "<td>";
     462            echo '<td>';
    463463
    464464        if (in_array($day, $daywithpost)) { // any posts today?
     
    483483    global $allowedtags;
    484484    foreach($allowedtags as $tag => $attributes) {
    485         $allowed .= "<$tag";
     485        $allowed .= '<'.$tag;
    486486        if (0 < count($attributes)) {
    487487            foreach ($attributes as $attribute => $limits) {
    488                 $allowed .= " $attribute=\"\"";
    489             }
    490         }
    491         $allowed .= "> ";
     488                $allowed .= ' '.$attribute.'=""';
     489            }
     490        }
     491        $allowed .= '> ';
    492492    }
    493493    return htmlentities($allowed);
     
    498498function the_date_xml() {
    499499    global $post;
    500     echo mysql2date("Y-m-d",$post->post_date);
     500    echo mysql2date('Y-m-d',$post->post_date);
    501501    //echo ""+$post->post_date;
    502502}
Note: See TracChangeset for help on using the changeset viewer.