diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-05-29 13:08:01 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-05-29 13:08:01 +0200 |
commit | b8d328076384ff48be47f59366aea8b1e1cc04a1 (patch) | |
tree | 81f0c9ac22a7ca48bf6aa6ccde8c738d5620caa3 /include/bbcode.php | |
parent | 5f1ae2930b5ae69e142aed84f70afe5cde8cc38f (diff) | |
download | volse-hubzilla-b8d328076384ff48be47f59366aea8b1e1cc04a1.tar.gz volse-hubzilla-b8d328076384ff48be47f59366aea8b1e1cc04a1.tar.bz2 volse-hubzilla-b8d328076384ff48be47f59366aea8b1e1cc04a1.zip |
some fixes to make menu sharing work and expose it in the ui.
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 1f5a65399..a766b6aea 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -193,6 +193,9 @@ function translate_design_element($type) { case 'block': $ret = t('block'); break; + case 'menu': + $ret = t('menu'); + break; } return $ret; |