aboutsummaryrefslogtreecommitdiffstats
path: root/include
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
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')
-rw-r--r--include/attach.php5
-rw-r--r--include/text.php8
2 files changed, 12 insertions, 1 deletions
diff --git a/include/attach.php b/include/attach.php
index 202412263..4db5bc435 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -1428,6 +1428,8 @@ function attach_delete($channel_id, $resource, $is_photo = 0) {
if(! $r) {
attach_drop_photo($channel_id,$resource);
+ $arr = ['channel_id' => $channel_id, 'resource' => $resource, 'is_photo'=>$is_photo];
+ call_hooks("attach_delete",$arr);
return;
}
@@ -1486,6 +1488,9 @@ function attach_delete($channel_id, $resource, $is_photo = 0) {
intval($channel_id)
);
+ $arr = ['channel_id' => $channel_id, 'resource' => $resource, 'is_photo'=>$is_photo];
+ call_hooks("attach_delete",$arr);
+
file_activity($channel_id, $object, $object['allow_cid'], $object['allow_gid'], $object['deny_cid'], $object['deny_gid'], 'update', true);
return;
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;
}