aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-09-17 11:36:25 +0200
committerMario Vavti <mario@mariovavti.com>2018-09-17 11:36:25 +0200
commit1455fa6bc3298ecfae4210410441bd072fd359eb (patch)
tree0e11f6f89de5d5dccd16ae9f3d3dd147fc156331 /include/text.php
parenta9853e6033ed6a9af639606fa73bb5b40d2fbbcb (diff)
parenteefa47776b90e1d91140633f73fbbddb973db0b4 (diff)
downloadvolse-hubzilla-1455fa6bc3298ecfae4210410441bd072fd359eb.tar.gz
volse-hubzilla-1455fa6bc3298ecfae4210410441bd072fd359eb.tar.bz2
volse-hubzilla-1455fa6bc3298ecfae4210410441bd072fd359eb.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index 8a07dc113..4b5442985 100644
--- a/include/text.php
+++ b/include/text.php
@@ -37,7 +37,13 @@ function replace_macros($s, $r) {
call_hooks('replace_macros', $arr);
$t = App::template_engine();
- $output = $t->replace_macros($arr['template'], $arr['params']);
+
+ try {
+ $output = $t->replace_macros($arr['template'], $arr['params']);
+ } catch (Exception $e) {
+ logger("Unable to render template: ",$e->getMessage());
+ $output = "<h3>ERROR: there was an error creating the output.</h3>";
+ }
return $output;
}