summaryrefslogtreecommitdiff
path: root/lib/grouplist.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-02-15 20:41:46 +0100
committerSarven Capadisli <csarven@status.net>2010-02-15 20:41:46 +0100
commit03edbfe24e99308b8c27363a0b81b96f9fda18a0 (patch)
tree2088809735df33bcf79ad3c57bd055acee94634e /lib/grouplist.php
parent73e2264c6aa7c1fa3a6e4b63f41b210af3c50597 (diff)
Added single whitespace to separate inline text words.
Diffstat (limited to 'lib/grouplist.php')
-rw-r--r--lib/grouplist.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/grouplist.php b/lib/grouplist.php
index 99bff9cdc..854bc34e2 100644
--- a/lib/grouplist.php
+++ b/lib/grouplist.php
@@ -105,6 +105,7 @@ class GroupList extends Widget
'alt' =>
($this->group->fullname) ? $this->group->fullname :
$this->group->nickname));
+ $this->out->text(' ');
$hasFN = ($this->group->fullname) ? 'nickname' : 'fn org nickname';
$this->out->elementStart('span', $hasFN);
$this->out->raw($this->highlight($this->group->nickname));
@@ -112,16 +113,19 @@ class GroupList extends Widget
$this->out->elementEnd('a');
if ($this->group->fullname) {
+ $this->out->text(' ');
$this->out->elementStart('span', 'fn org');
$this->out->raw($this->highlight($this->group->fullname));
$this->out->elementEnd('span');
}
if ($this->group->location) {
+ $this->out->text(' ');
$this->out->elementStart('span', 'label');
$this->out->raw($this->highlight($this->group->location));
$this->out->elementEnd('span');
}
if ($this->group->homepage) {
+ $this->out->text(' ');
$this->out->elementStart('a', array('href' => $this->group->homepage,
'class' => 'url'));
$this->out->raw($this->highlight($this->group->homepage));