diff options
author | friendica <info@friendica.com> | 2014-11-11 15:50:27 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-11 15:50:27 -0800 |
commit | f2d5f23d584944e4c553fb296b8f649b9be2f0c2 (patch) | |
tree | 2cb8821775cbeb85f9c9b78c32c4eec86f88bd4a /mod/directory.php | |
parent | 3fa003b5a889e2565eb64a950afabf5f6e4b3fe8 (diff) | |
download | volse-hubzilla-f2d5f23d584944e4c553fb296b8f649b9be2f0c2.tar.gz volse-hubzilla-f2d5f23d584944e4c553fb296b8f649b9be2f0c2.tar.bz2 volse-hubzilla-f2d5f23d584944e4c553fb296b8f649b9be2f0c2.zip |
Nothing here, move along.
Diffstat (limited to 'mod/directory.php')
-rw-r--r-- | mod/directory.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/directory.php b/mod/directory.php index b7c965289..256f7ca9a 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -2,7 +2,7 @@ require_once('include/dir_fns.php'); require_once('include/widgets.php'); - +require_once('include/bbcode.php'); function directory_init(&$a) { $a->set_pager_itemspage(60); @@ -166,7 +166,7 @@ function directory_content(&$a) { $hometown = ((x($profile,'hometown') == 1) ? t('Hometown: ') . $profile['hometown'] : False); - $about = ((x($profile,'about') == 1) ? t('About: ') . $profile['about'] : False); + $about = ((x($profile,'about') == 1) ? t('About: ') . bbcode($profile['about']) : False); $keywords = ((x($profile,'keywords')) ? $profile['keywords'] : ''); |