Ticket #12366: 12366.diff
File 12366.diff, 8.7 KB (added by , 15 years ago) |
---|
-
wp-includes/class-http.php
9 9 * @package WordPress 10 10 * @subpackage HTTP 11 11 * @since 2.7.0 12 * @author Jacob Santos <wordpress@santosj.name>13 12 */ 14 13 15 14 /** … … 1641 1640 * @package WordPress 1642 1641 * @subpackage HTTP 1643 1642 * @since 2.8.0 1644 * @author Beau Lebens1645 1643 */ 1646 1644 class WP_Http_Cookie { 1647 1645 -
wp-includes/theme.php
1434 1434 * 1435 1435 * Must be called in the themes functions.php file to work. 1436 1436 * 1437 * @author Mark Jaquith1438 1437 * @since 2.9 1439 1438 * @param string $feature the feature being added 1440 1439 */ … … 1450 1449 /** 1451 1450 * Checks a theme's support for a given feature 1452 1451 * 1453 * @author Mark Jaquith1454 1452 * @since 2.9 1455 1453 * @param string $feature the feature being checked 1456 1454 * @return boolean … … 1490 1488 /** 1491 1489 * Checks a theme's support for a given feature before loading the functions which implement it. 1492 1490 * 1493 * @author Peter Westwood1494 1491 * @since 2.9 1495 1492 * @param string $feature the feature being checked 1496 1493 * @param string $include the file containing the functions that implement the feature -
wp-includes/media.php
602 602 * Uses the begin_fetch_post_thumbnail_html and end_fetch_post_thumbnail_html action hooks to 603 603 * dynamically add/remove itself so as to only filter post thumbnail thumbnails 604 604 * 605 * @author Mark Jaquith606 605 * @since 2.9.0 607 606 * @param array $attr Attributes including src, class, alt, title 608 607 * @return array … … 615 614 /** 616 615 * Adds _wp_post_thumbnail_class_filter to the wp_get_attachment_image_attributes filter 617 616 * 618 * @author Mark Jaquith619 617 * @since 2.9.0 620 618 */ 621 619 function _wp_post_thumbnail_class_filter_add( $attr ) { … … 625 623 /** 626 624 * Removes _wp_post_thumbnail_class_filter from the wp_get_attachment_image_attributes filter 627 625 * 628 * @author Mark Jaquith629 626 * @since 2.9.0 630 627 */ 631 628 function _wp_post_thumbnail_class_filter_remove( $attr ) { -
wp-includes/formatting.php
249 249 * NOTE: This function checks for 5-Byte sequences, UTF8 250 250 * has Bytes Sequences with a maximum length of 4. 251 251 * 252 * @author bmorel at ssi dot fr (modified)253 252 * @since 1.2.1 254 253 * 255 254 * @param string $str The string to be checked -
wp-includes/rewrite.php
200 200 * 201 201 * @access private 202 202 * @since 2.6.0 203 * @author Mark Jaquith204 203 * 205 204 * @param string $base The taxonomy base that we're going to filter 206 205 * @return string -
wp-includes/general-template.php
794 794 * three values for the format are not used, then custom format is assumed. 795 795 * 796 796 * @since 1.0.0 797 * @author Orien798 * @link http://icecode.com/ link navigation hack by Orien799 797 * 800 798 * @param string $url URL to archive. 801 799 * @param string $text Archive text description. -
wp-includes/canonical.php
5 5 * Based on "Permalink Redirect" from Scott Yang and "Enforce www. Preference" 6 6 * by Mark Jaquith 7 7 * 8 * @author Scott Yang9 * @author Mark Jaquith10 8 * @package WordPress 11 9 * @since 2.3.0 12 10 */ -
wp-includes/deprecated.php
1032 1032 * Output a list of all links, listed by category, using the settings in 1033 1033 * $wpdb->linkcategories and output it as a nested HTML unordered list. 1034 1034 * 1035 * @author Dougal1036 1035 * @since 1.0.1 1037 1036 * @deprecated 2.1 1038 1037 * @deprecated Use wp_list_bookmarks() … … 1076 1075 /** 1077 1076 * Show the link to the links popup and the number of links. 1078 1077 * 1079 * @author Fullo1080 * @link http://sprite.csr.unibo.it/fullo/1081 *1082 1078 * @since 0.71 1083 1079 * @deprecated 2.1 1084 1080 * @deprecated {@internal Use function instead is unknown}} -
wp-includes/http.php
9 9 * @package WordPress 10 10 * @subpackage HTTP 11 11 * @since 2.7.0 12 * @author Jacob Santos <wordpress@santosj.name>13 12 */ 14 13 15 14 /** -
wp-app.php
2 2 /** 3 3 * Atom Publishing Protocol support for WordPress 4 4 * 5 * @author Original by Elias Torres <http://torrez.us/archives/2006/08/31/491/>6 * @author Modified by Dougal Campbell <http://dougal.gunters.org/>7 5 * @version 1.0.5-dc 8 6 */ 9 7 -
wp-content/plugins/hello.php
1 1 <?php 2 2 /** 3 3 * @package Hello_Dolly 4 * @author Matt Mullenweg5 4 * @version 1.5.1 6 5 */ 7 6 /* -
wp-admin/includes/user.php
484 484 * WordPress User Search class. 485 485 * 486 486 * @since unknown 487 * @author Mark Jaquith488 487 */ 489 488 class WP_User_Search { 490 489 -
wp-admin/js/custom-navigation-dynamic-functions.dev.js
2 2 * WordPress Administration Custom Navigation 3 3 * Interface JS functions 4 4 * 5 * @author Jeffikus <pearce.jp@gmail.com>6 5 * @version 1.1.0 7 6 * 8 7 * @package WordPress -
wp-admin/js/custom-navigation-default-items.dev.js
2 2 * WordPress Administration Custom Navigation 3 3 * Interface JQuery functions 4 4 * 5 * @author Jeffikus <pearce.jp@gmail.com>6 5 * @version 1.1.0 7 6 * 8 7 * @package WordPress -
wp-admin/import/dotclear.php
4 4 * 5 5 * @package WordPress 6 6 * @subpackage Importer 7 * @author Thomas Quinot8 * @link http://thomas.quinot.org/9 7 */ 10 8 11 9 /** -
wp-admin/import/blogware.php
4 4 * 5 5 * @package WordPress 6 6 * @subpackage Importer 7 * @author Shayne Sweeney8 * @link http://www.theshayne.com/9 7 */ 10 8 11 9 /** -
wp-admin/import/opml.php
2 2 /** 3 3 * Links Import Administration Panel. 4 4 * 5 * @copyright 2002 Mike Little <mike@zed1.com>6 * @author Mike Little <mike@zed1.com>7 5 * @package WordPress 8 6 * @subpackage Administration 9 7 */ -
wp-admin/nav-menus.php
3 3 * WordPress Administration for Navigation Menus 4 4 * Interface functions 5 5 * 6 * @author Jeffikus <pearce.jp@gmail.com>7 6 * @version 1.1.0 8 7 * 9 8 * @package WordPress -
wp-admin/css/custom-navigation.dev.css
2 2 * WordPress Administration Custom Navigation 3 3 * Interface CSS 4 4 * 5 * @author Jeffikus <pearce.jp@gmail.com>6 5 * @version 1.1.0 7 6 * 8 7 * @package WordPress