Changeset 11190 for trunk/wp-includes/default-widgets.php
- Timestamp:
- 05/05/2009 04:28:05 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/default-widgets.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-widgets.php
r11188 r11190 16 16 17 17 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') ); 19 19 $this->WP_Widget('pages', __('Pages'), $widget_ops); 20 20 } … … 197 197 198 198 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') ); 200 200 $this->WP_Widget('archives', __('Archives'), $widget_ops); 201 201 } … … 310 310 311 311 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') ); 313 313 $this->WP_Widget('calendar', __('Calendar'), $widget_ops); 314 314 }
Note: See TracChangeset
for help on using the changeset viewer.