aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2006-08-24 15:28:39 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2006-08-24 15:28:39 +0000
commit7bd6b93c45c1cf31e8593b0e8ee433f5d6c5100a (patch)
tree02996da1b11d34a7fc6bc72735b902bf2681a8fa /contrib
parente4a01aea93c22898fb93db4e3fda041bcf55a7ca (diff)
downloadopenembedded-7bd6b93c45c1cf31e8593b0e8ee433f5d6c5100a.tar.gz
feed-browser: split maintainers to separate lines (works when ', ' is used as separator
Diffstat (limited to 'contrib')
-rw-r--r--contrib/feed-browser/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/feed-browser/index.php b/contrib/feed-browser/index.php
index 809e2c7b8d..9b612f9fd1 100644
--- a/contrib/feed-browser/index.php
+++ b/contrib/feed-browser/index.php
@@ -300,7 +300,7 @@ function pkgdetails ($package)
$details .= sprintf ("<p id='description'>%s</p>", htmlentities($package['packages.p_desc']));
$details .= "<dl>";
- $details .= sprintf ("\n<dt>Maintainer:</dt><dd>%s</dd>", htmlentities(str_replace('@', ' at ', $package['packages.p_maintainer'])));
+ $details .= sprintf ("\n<dt>Maintainer:</dt><dd>%s</dd>", str_replace(array('@',', '), array(' at ', '<br />'), htmlentities($package['packages.p_maintainer'])));
if($package['packages.p_homepage'])
{