Mismatched quotes in boot.php (wrecked up scrape_dfrn()).

This commit is contained in:
Olivier Migeot 2011-04-18 17:42:15 +02:00
parent 741a262f1b
commit 8b7b0bd5a2
1 changed files with 1 additions and 1 deletions

View File

@ -2027,7 +2027,7 @@ function micropro($contact, $redirect = false, $class = '') {
$url = '';
return '<div class="contact-block-div' . $class . '"><a class="contact-block-link' . $class . $sparkle
. (($click) ? ' fakelink' : '') . '" '
. (($url) ? '" href="' . $url . '"' : '') . $click . ' ><img class="contact-block-img' . $class . $sparkle . '" src="'
. (($url) ? ' href="' . $url . '"' : '') . $click . ' ><img class="contact-block-img' . $class . $sparkle . '" src="'
. $contact['micro'] . '" title="' . $contact['name'] . ' [' . $contact['url'] . ']" alt="' . $contact['name']
. '" /></a></div>' . "\r\n";
}}