aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-12-03 19:30:36 -0800
committerzotlabs <mike@macgirvin.com>2017-12-03 19:30:36 -0800
commit91e3c5c34e93004b9641d906c9f512b42f9c4a7a (patch)
tree2869cf2bca3e5526dad7cb926521c32ecc1089d8 /include/bbcode.php
parent1c821640cec383ab3ac02834cd560edd48111c08 (diff)
downloadvolse-hubzilla-91e3c5c34e93004b9641d906c9f512b42f9c4a7a.tar.gz
volse-hubzilla-91e3c5c34e93004b9641d906c9f512b42f9c4a7a.tar.bz2
volse-hubzilla-91e3c5c34e93004b9641d906c9f512b42f9c4a7a.zip
render installable elements as buttons instead of links
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index fd476766e..e38473168 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -246,8 +246,8 @@ function bb_parse_element($match) {
$j = json_decode(base64url_decode($match[1]),true);
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;
+ $text = sprintf( t('Install %1$s element %2$s'), translate_design_element($j['type']), $j['pagetitle']);
+ $o = EOL . '<button class="btn btn-primary" onclick="importElement(\'' . $match[1] . '\'); return false;" >' . $text . '</button>' . 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'];