aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-07-13 17:43:10 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-07-13 17:43:10 -0700
commit6916c1076cd238779a9653adce81eabda2b655ab (patch)
treeedaf7d6f86573c8f19b4d420496b59b0f6476a6f /include/bbcode.php
parent69a4cf73a310b3df1f80460addb27acf1fea5f2b (diff)
parent86633bda48af77483a082d79c1bec7abc3febab3 (diff)
downloadvolse-hubzilla-6916c1076cd238779a9653adce81eabda2b655ab.tar.gz
volse-hubzilla-6916c1076cd238779a9653adce81eabda2b655ab.tar.bz2
volse-hubzilla-6916c1076cd238779a9653adce81eabda2b655ab.zip
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index aa2562d62..2e201344c 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -174,10 +174,14 @@ function bb_parse_app($match) {
function bb_parse_element($match) {
$j = json_decode(base64url_decode($match[1]),true);
- if ($j) {
+ if ($j && local_channel()) {
$text = sprintf( t('Install %s element: '), translate_design_element($j['type'])) . $j['pagetitle'];
$o = EOL . '<a href="#" onclick="importElement(\'' . $match[1] . '\'); return false;" >' . $text . '</a>' . EOL;
}
+ else {
+ $text = sprintf( t('This post contains an installable %s element, however you lack permissions to install it on this site.' ), translate_design_element($j['type'])) . $j['pagetitle'];
+ $o = EOL . $text . EOL;
+ }
return $o;
}