diff options
author | Paweł Sroka <srokap@gmail.com> | 2012-11-04 08:25:28 +0100 |
---|---|---|
committer | Paweł Sroka <srokap@gmail.com> | 2012-11-04 08:25:28 +0100 |
commit | 3bf72994688ad9292bf37444d80ab5ab1a002748 (patch) | |
tree | 2fcdd2f2773e3bf4cc0af9e8133918133a6f6760 /views/rss/group/default.php | |
parent | b2232139f13b759e8f5ce62def75eaeaa530a5b6 (diff) | |
download | elgg-3bf72994688ad9292bf37444d80ab5ab1a002748.tar.gz elgg-3bf72994688ad9292bf37444d80ab5ab1a002748.tar.bz2 |
Fixes #1479 - Replaces WP autop with implementation from Steve Clay.
Diffstat (limited to 'views/rss/group/default.php')
-rw-r--r-- | views/rss/group/default.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/rss/group/default.php b/views/rss/group/default.php index f57c7f82c..7fef4d434 100644 --- a/views/rss/group/default.php +++ b/views/rss/group/default.php @@ -11,9 +11,9 @@ $pubdate = date('r', $vars['entity']->getTimeCreated()); $title = htmlspecialchars($vars['entity']->name, ENT_NOQUOTES, 'UTF-8'); if ($vars['entity']->description) { - $description = autop($vars['entity']->description); + $description = elgg_autop($vars['entity']->description); } elseif ($vars['entity']->briefdescription) { - $description = autop($vars['entity']->briefdescription); + $description = elgg_autop($vars['entity']->briefdescription); } else { $description = ''; } |