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/profilelist.php | |
parent | 73e2264c6aa7c1fa3a6e4b63f41b210af3c50597 (diff) |
Added single whitespace to separate inline text words.
Diffstat (limited to 'lib/profilelist.php')
-rw-r--r-- | lib/profilelist.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/profilelist.php b/lib/profilelist.php index 3412d41d1..693cd6449 100644 --- a/lib/profilelist.php +++ b/lib/profilelist.php @@ -191,6 +191,7 @@ class ProfileListItem extends Widget 'alt' => ($this->profile->fullname) ? $this->profile->fullname : $this->profile->nickname)); + $this->out->text(' '); $hasFN = (!empty($this->profile->fullname)) ? 'nickname' : 'fn nickname'; $this->out->elementStart('span', $hasFN); $this->out->raw($this->highlight($this->profile->nickname)); @@ -201,6 +202,7 @@ class ProfileListItem extends Widget function showFullName() { if (!empty($this->profile->fullname)) { + $this->out->text(' '); $this->out->elementStart('span', 'fn'); $this->out->raw($this->highlight($this->profile->fullname)); $this->out->elementEnd('span'); @@ -210,6 +212,7 @@ class ProfileListItem extends Widget function showLocation() { if (!empty($this->profile->location)) { + $this->out->text(' '); $this->out->elementStart('span', 'location'); $this->out->raw($this->highlight($this->profile->location)); $this->out->elementEnd('span'); @@ -219,6 +222,7 @@ class ProfileListItem extends Widget function showHomepage() { if (!empty($this->profile->homepage)) { + $this->out->text(' '); $this->out->elementStart('a', array('href' => $this->profile->homepage, 'class' => 'url')); $this->out->raw($this->highlight($this->profile->homepage)); |