aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorOlivier Migeot <olivier@migeot.org>2011-04-18 17:42:15 +0200
committerOlivier Migeot <olivier@migeot.org>2011-04-18 17:42:15 +0200
commit8b7b0bd5a249e3ff500874368f3413a1a555dc8d (patch)
tree18b09eec18cb1a92037b9d0985974d36e5efd931 /boot.php
parent741a262f1b2d5c8f911896da32e80d543afb5cd1 (diff)
downloadvolse-hubzilla-8b7b0bd5a249e3ff500874368f3413a1a555dc8d.tar.gz
volse-hubzilla-8b7b0bd5a249e3ff500874368f3413a1a555dc8d.tar.bz2
volse-hubzilla-8b7b0bd5a249e3ff500874368f3413a1a555dc8d.zip
Mismatched quotes in boot.php (wrecked up scrape_dfrn()).
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 7a8f00fbe..992c2bb87 100644
--- a/boot.php
+++ b/boot.php
@@ -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";
}}