diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-05-24 14:57:01 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-05-24 14:57:01 +0200 |
commit | 125cd5e32b537e2f3540a2b1c335fb62ad6a339e (patch) | |
tree | 61a8345b901648f4599f6f7b1855b0001a3d84a9 | |
parent | a332dfcf6be6fc553f4a1b6400173cde43a7a6b6 (diff) | |
download | volse-hubzilla-125cd5e32b537e2f3540a2b1c335fb62ad6a339e.tar.gz volse-hubzilla-125cd5e32b537e2f3540a2b1c335fb62ad6a339e.tar.bz2 volse-hubzilla-125cd5e32b537e2f3540a2b1c335fb62ad6a339e.zip |
should not call prepare text here anymore
-rw-r--r-- | include/comanche.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comanche.php b/include/comanche.php index 9fe7dc255..fad499649 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -180,7 +180,7 @@ function comanche_block($s, $class = '') { if(trim($r[0]['body']) === '$content') { - $o .= prepare_text(get_app()->page['content'], get_app()->data['webpage'][0]['mimetype']); + $o .= get_app()->page['content']; } else { $o .= prepare_text($r[0]['body'], $r[0]['mimetype']); |