Make WordPress Core

Ticket #7709: bug7709.link-template.diff

File bug7709.link-template.diff, 1.0 KB (added by coffee2code, 15 years ago)
  • wp-includes/link-template.php

     
    16951695        if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
    16961696                $url .= ltrim($path, '/');
    16971697
    1698         return $url;
     1698        return apply_filters('admin_url', $url, $path);
    16991699}
    17001700
    17011701/**
     
    17131713        if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
    17141714                $url .= ltrim($path, '/');
    17151715
    1716         return $url;
     1716        return apply_filters('includes_url', $url, $path);
    17171717}
    17181718
    17191719/**
     
    17361736        if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
    17371737                $url .= '/' . ltrim($path, '/');
    17381738
    1739         return $url;
     1739        return apply_filters('content_url', $url, $path);
    17401740}
    17411741
    17421742/**
     
    17681768        if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
    17691769                $url .= '/' . ltrim($path, '/');
    17701770
    1771         return $url;
     1771        return apply_filters('plugins_url', $url, $path, $plugin);
    17721772}
    17731773
    17741774?>