diff options
author | Sarven Capadisli <csarven@status.net> | 2010-02-15 20:41:46 +0100 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-02-15 20:41:46 +0100 |
commit | 03edbfe24e99308b8c27363a0b81b96f9fda18a0 (patch) | |
tree | 2088809735df33bcf79ad3c57bd055acee94634e /lib/grouplist.php | |
parent | 73e2264c6aa7c1fa3a6e4b63f41b210af3c50597 (diff) |
Added single whitespace to separate inline text words.
Diffstat (limited to 'lib/grouplist.php')
-rw-r--r-- | lib/grouplist.php | 4 |
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)); |