Allow absolute image URIs in links.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1258 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-05-10 08:26:42 +00:00
parent 1934965c55
commit 1498bf0bc2

View File

@ -207,7 +207,10 @@ function get_links($category = -1, $before = '', $after = '<br />',
echo($rel . $title . $target);
echo('>');
if (($row->link_image != null) && $show_images) {
echo "<img src='" . get_settings('siteurl') . "$row->link_image' $alt $title />";
if (strstr($row->link_image, 'http'))
echo "<img src='$row->link_image' $alt $title />";
else // If it's a relative path
echo "<img src='" . get_settings('siteurl') . "$row->link_image' $alt $title />";
} else {
echo($name);
}