From 924d4193789217dadbddf8e0dddb960a2988136c Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 5 Oct 2011 02:35:25 -0700 Subject: [PATCH] added prepare_body hooks --- include/text.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/text.php b/include/text.php index 656cd8809c..701c1e41b6 100644 --- a/include/text.php +++ b/include/text.php @@ -744,7 +744,12 @@ function link_compare($a,$b) { if(! function_exists('prepare_body')) { function prepare_body($item,$attach = false) { + call_hooks('prepare_body_init', $item); + $s = prepare_text($item['body']); + + call_hooks('prepare_body', $s); + if(! $attach) return $s; @@ -776,6 +781,7 @@ function prepare_body($item,$attach = false) { } $s .= '
'; } + call_hooks('prepare_body_final', $s); return $s; }}