Changeset 24229
- Timestamp:
- 05/10/2013 01:39:30 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/widgets.php
r22406 r24229 59 59 /** 60 60 * Show the widgets and their settings for a sidebar. 61 * Used in the theadmin widget config screen.61 * Used in the admin widget config screen. 62 62 * 63 63 * @since 2.5.0 -
trunk/wp-admin/js/revisions.js
r24205 r24229 622 622 }, 623 623 624 // go t hethe previous revision624 // go to the previous revision 625 625 previousRevision: function() { 626 626 if ( Diff.rightDiff > 1 ) // unless at left boundry -
trunk/wp-includes/class-wp-theme.php
r23529 r24229 88 88 * The directory name of the theme's files, inside the theme root. 89 89 * 90 * In the case of a child theme, this is directory name of the thechild theme.90 * In the case of a child theme, this is directory name of the child theme. 91 91 * Otherwise, 'stylesheet' is the same as 'template'. 92 92 * … … 721 721 * The directory name of the theme's "stylesheet" files, inside the theme root. 722 722 * 723 * In the case of a child theme, this is directory name of the thechild theme.723 * In the case of a child theme, this is directory name of the child theme. 724 724 * Otherwise, get_stylesheet() is the same as get_template(). 725 725 * -
trunk/wp-includes/feed.php
r24054 r24229 392 392 $enclosure = explode("\n", $enc); 393 393 394 // only get the the first element eg,audio/mpeg from 'audio/mpeg mpga mp2 mp3'394 // only get the first element, e.g. audio/mpeg from 'audio/mpeg mpga mp2 mp3' 395 395 $t = preg_split('/[ \t]/', trim($enclosure[2]) ); 396 396 $type = $t[0]; -
trunk/wp-includes/formatting.php
r24214 r24229 1914 1914 * @since 1.2.0 1915 1915 * 1916 * @uses get_option() to retrieve the thevalue of 'gmt_offset'.1916 * @uses get_option() to retrieve the value of 'gmt_offset'. 1917 1917 * @param string $string The date to be converted. 1918 1918 * @param string $format The format string for the returned date (default is Y-m-d H:i:s) -
trunk/wp-includes/functions.php
r24208 r24229 2744 2744 * same. 2745 2745 * 2746 * This function was backported to the the WordPress 2.3.2, but originally was2747 * addedin WordPress 2.5.0.2746 * This function was backported to WordPress 2.3.2, but originally was added 2747 * in WordPress 2.5.0. 2748 2748 * 2749 2749 * @since 2.3.2 -
trunk/wp-includes/post.php
r24207 r24229 1075 1075 * inherited from public, each does not rely on this relationship and controls a very specific intention. 1076 1076 * - exclude_from_search - Whether to exclude posts with this post type from front end search results. 1077 * * If not set, the theopposite of public's current value is used.1077 * * If not set, the opposite of public's current value is used. 1078 1078 * - publicly_queryable - Whether queries can be performed on the front end for the post type as part of parse_request(). 1079 1079 * * ?post_type={post_type_key}
Note: See TracChangeset
for help on using the changeset viewer.