Ticket #7709: bug7709.link-template.diff
File bug7709.link-template.diff, 1.0 KB (added by , 15 years ago) |
---|
-
wp-includes/link-template.php
1695 1695 if ( !empty($path) && is_string($path) && strpos($path, '..') === false ) 1696 1696 $url .= ltrim($path, '/'); 1697 1697 1698 return $url;1698 return apply_filters('admin_url', $url, $path); 1699 1699 } 1700 1700 1701 1701 /** … … 1713 1713 if ( !empty($path) && is_string($path) && strpos($path, '..') === false ) 1714 1714 $url .= ltrim($path, '/'); 1715 1715 1716 return $url;1716 return apply_filters('includes_url', $url, $path); 1717 1717 } 1718 1718 1719 1719 /** … … 1736 1736 if ( !empty($path) && is_string($path) && strpos($path, '..') === false ) 1737 1737 $url .= '/' . ltrim($path, '/'); 1738 1738 1739 return $url;1739 return apply_filters('content_url', $url, $path); 1740 1740 } 1741 1741 1742 1742 /** … … 1768 1768 if ( !empty($path) && is_string($path) && strpos($path, '..') === false ) 1769 1769 $url .= '/' . ltrim($path, '/'); 1770 1770 1771 return $url;1771 return apply_filters('plugins_url', $url, $path, $plugin); 1772 1772 } 1773 1773 1774 1774 ?>