Changes in trunk/wp-includes/rss.php [13848:17071]
- File:
-
- 1 edited
-
trunk/wp-includes/rss.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rss.php
r13848 r17071 395 395 * Build Magpie object based on RSS from URL. 396 396 * 397 * @since unknown397 * @since 1.5.0 398 398 * @package External 399 399 * @subpackage MagpieRSS … … 533 533 * Retrieve URL headers and content using WP HTTP Request API. 534 534 * 535 * @since unknown535 * @since 1.5.0 536 536 * @package External 537 537 * @subpackage MagpieRSS … … 577 577 * Retrieve 578 578 * 579 * @since unknown579 * @since 1.5.0 580 580 * @package External 581 581 * @subpackage MagpieRSS … … 627 627 * Set up constants with default values, unless user overrides. 628 628 * 629 * @since unknown629 * @since 1.5.0 630 630 * @package External 631 631 * @subpackage MagpieRSS … … 872 872 * Display all RSS items in a HTML ordered list. 873 873 * 874 * @since unknown874 * @since 1.5.0 875 875 * @package External 876 876 * @subpackage MagpieRSS … … 892 892 esc_url( $item['link'] ), 893 893 esc_attr( strip_tags( $item['description'] ) ), 894 htmlentities( $item['title'] )894 esc_html( $item['title'] ) 895 895 ); 896 896 } … … 912 912 * function. 913 913 * 914 * @since unknown914 * @since 1.5.0 915 915 * @package External 916 916 * @subpackage MagpieRSS … … 927 927 echo "<li>\n"; 928 928 echo "<a href='$item[link]' title='$item[description]'>"; 929 echo htmlentities($item['title']);929 echo esc_html($item['title']); 930 930 echo "</a><br />\n"; 931 931 echo "</li>\n";
Note: See TracChangeset
for help on using the changeset viewer.