aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-30 15:03:44 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-30 15:03:44 -0700
commitedd228decb5ef4c3ffa2a8be00983937680a56c2 (patch)
treea0fc19150c1cb5fce8ea51039d189351228fa277 /mod
parent3a9139f76ee64b49c7902269cb3d98f6a6e20230 (diff)
downloadvolse-hubzilla-edd228decb5ef4c3ffa2a8be00983937680a56c2.tar.gz
volse-hubzilla-edd228decb5ef4c3ffa2a8be00983937680a56c2.tar.bz2
volse-hubzilla-edd228decb5ef4c3ffa2a8be00983937680a56c2.zip
strip images from directory text entries
Diffstat (limited to 'mod')
-rw-r--r--mod/directory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/directory.php b/mod/directory.php
index 3e94d6395..7c7f63037 100644
--- a/mod/directory.php
+++ b/mod/directory.php
@@ -242,7 +242,7 @@ function directory_content(&$a) {
$hometown = ((x($profile,'hometown') == 1) ? t('Hometown: ') . $profile['hometown'] : False);
- $about = ((x($profile,'about') == 1) ? t('About: ') . bbcode($profile['about']) : False);
+ $about = ((x($profile,'about') == 1) ? t('About: ') . bbcode(strip_bbimage($profile['about'])) : False);
$keywords = ((x($profile,'keywords')) ? $profile['keywords'] : '');