Changeset 29163
- Timestamp:
- 07/14/2014 01:01:22 AM (11 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r29044 r29163 1940 1940 * 1941 1941 * @since 4.0.0 1942 * 1943 * @see wp_list_comments() 1942 1944 * 1943 1945 * @param array $r An array of arguments for displaying comments. -
trunk/src/wp-includes/formatting.php
r29008 r29163 41 41 if ( $reset || ! isset( $static_characters ) ) { 42 42 /** 43 * Filter whether to skip running `wptexturize()`.43 * Filter whether to skip running wptexturize(). 44 44 * 45 * Passing false to the filter will effectively short-circuit `wptexturize()`.45 * Passing false to the filter will effectively short-circuit wptexturize(). 46 46 * returning the original text passed to the function instead. 47 47 * 48 * The filter runs only once, the first time `wptexturize()`is called.48 * The filter runs only once, the first time wptexturize() is called. 49 49 * 50 50 * @since 4.0.0 51 51 * 52 * @param bool $run_texturize Whether to short-circuit `wptexturize()`. 52 * @see wptexturize() 53 * 54 * @param bool $run_texturize Whether to short-circuit wptexturize(). 53 55 */ 54 56 $run_texturize = apply_filters( 'run_wptexturize', $run_texturize ); -
trunk/src/wp-includes/functions.php
r29013 r29163 3507 3507 * @since 4.0.0 3508 3508 * 3509 * @param string $url The URL 3510 * @return bool True if the given URL uses https, false if not (or if the URL is not valid). 3509 * @param string $url The URL. 3510 * @return bool True if the given URL uses https, false if not (or if the URL 3511 * is not valid). 3511 3512 */ 3512 3513 function is_https_url( $url ) { -
trunk/src/wp-includes/l10n.php
r29007 r29163 822 822 * 823 823 * @since 4.0.0 824 * 825 * @see get_available_languages() 826 * 827 * @param array $args Optional arguments. Default empty array. 824 828 */ 825 829 function wp_dropdown_languages( $args = array() ) { -
trunk/src/wp-includes/ms-blogs.php
r28881 r29163 911 911 * @since 4.0 912 912 * 913 * @param int $post_id Post ID 913 * @param int $post_id Post ID. 914 914 */ 915 915 function _update_posts_count_on_delete( $post_id ) { -
trunk/src/wp-includes/theme.php
r29044 r29163 1948 1948 * @since 4.0.0 1949 1949 * 1950 * @global WP_Customize_Manager $wp_customize Customizer instance. 1951 * 1950 1952 * @return bool True if the site is being previewed in the Customizer, false otherwise. 1951 1953 */ -
trunk/src/wp-includes/wp-db.php
r28978 r29163 1189 1189 * 1190 1190 * @since 4.0.0 1191 * 1192 * @param string $text The raw text to be escaped. The input typed by the user should have no extra or deleted slashes. 1193 * @return string Text in the form of a LIKE phrase. The output is not SQL safe. Call prepare or real_escape next. 1194 */ 1195 function esc_like( $text ) { 1191 * @access public 1192 * 1193 * @param string $text The raw text to be escaped. The input typed by the user should have no 1194 * extra or deleted slashes. 1195 * @return string Text in the form of a LIKE phrase. The output is not SQL safe. Call $wpdb::prepare() 1196 * or real_escape next. 1197 */ 1198 public function esc_like( $text ) { 1196 1199 return addcslashes( $text, '_%\\' ); 1197 1200 }
Note: See TracChangeset
for help on using the changeset viewer.