Index: wp-includes/link-template.php
===================================================================
--- wp-includes/link-template.php	(revision 10977)
+++ wp-includes/link-template.php	(working copy)
@@ -1695,7 +1695,7 @@
 	if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
 		$url .= ltrim($path, '/');
 
-	return $url;
+	return apply_filters('admin_url', $url, $path);
 }
 
 /**
@@ -1713,7 +1713,7 @@
 	if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
 		$url .= ltrim($path, '/');
 
-	return $url;
+	return apply_filters('includes_url', $url, $path);
 }
 
 /**
@@ -1736,7 +1736,7 @@
 	if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
 		$url .= '/' . ltrim($path, '/');
 
-	return $url;
+	return apply_filters('content_url', $url, $path);
 }
 
 /**
@@ -1768,7 +1768,7 @@
 	if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
 		$url .= '/' . ltrim($path, '/');
 
-	return $url;
+	return apply_filters('plugins_url', $url, $path, $plugin);
 }
 
 ?>
