From 4d37741c63325b382bee1d7c43e176ac1e92674e Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 8 Jun 2009 12:55:21 +0000 Subject: * Introducing substr wrapper function * Wire strips tags (Closes #1045) git-svn-id: https://code.elgg.org/elgg/trunk@3323 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/thewire/start.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'mod') diff --git a/mod/thewire/start.php b/mod/thewire/start.php index 9b313eed8..91618a48d 100644 --- a/mod/thewire/start.php +++ b/mod/thewire/start.php @@ -169,10 +169,11 @@ $thewire->access_id = $access_id; // Set its description appropriately - if (is_callable('mb_substr')) - $thewire->description = mb_substr($post, 0, 160); + $thewire->description = elgg_substr(strip_tags($post), 0, 160); + /*if (is_callable('mb_substr')) + $thewire->description = mb_substr(strip_tags($post), 0, 160); else - $thewire->description = substr($post, 0, 160); + $thewire->description = substr(strip_tags($post), 0, 160);*/ // add some metadata $thewire->method = $method; //method, e.g. via site, sms etc -- cgit v1.2.3