diff --git a/include/bbcode.php b/include/bbcode.php
index 4ff6f842e..9bb6cf047 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -173,8 +173,9 @@ function bb_parse_app($match) {
function bb_parse_element($match) {
$j = json_decode(base64url_decode($match[1]),true);
+ print_r($j);
if ($j) {
- $o = EOL . '' . t('Install design element: ') . $j['pagetitle'] . '' . EOL;
+ $o = EOL . '' . t('Install ' . $j['type'] . ' element: ') . $j['pagetitle'] . '' . EOL;
}
return $o;