Make WordPress Core


Ignore:
Timestamp:
05/05/2009 04:28:05 AM (17 years ago)
Author:
azaozz
Message:

Banishing ASCII quotes and apostrophes, props demetris, fixes #9655

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-widgets.php

    r11188 r11190  
    1616
    1717    function WP_Widget_Pages() {
    18         $widget_ops = array('classname' => 'widget_pages', 'description' => __( "Your blog's WordPress Pages") );
     18        $widget_ops = array('classname' => 'widget_pages', 'description' => __( 'Your blog’s WordPress Pages') );
    1919        $this->WP_Widget('pages', __('Pages'), $widget_ops);
    2020    }
     
    197197
    198198    function WP_Widget_Archives() {
    199         $widget_ops = array('classname' => 'widget_archive', 'description' => __( "A monthly archive of your blog's posts") );
     199        $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your blog’s posts') );
    200200        $this->WP_Widget('archives', __('Archives'), $widget_ops);
    201201    }
     
    310310
    311311    function WP_Widget_Calendar() {
    312         $widget_ops = array('classname' => 'widget_calendar', 'description' => __( "A calendar of your blog's posts") );
     312        $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your blog’s posts') );
    313313        $this->WP_Widget('calendar', __('Calendar'), $widget_ops);
    314314    }
Note: See TracChangeset for help on using the changeset viewer.