diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-30 19:50:41 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-06-07 09:27:42 +0200 |
commit | 80c65ea8f3a9be9238125b7941ae7c875ea9a07c (patch) | |
tree | e14bbda97b9ecd0b145ca2cbf7996b8fd31bb033 /include/bbcode.php | |
parent | 3a2a7d05084b1f61b5167b287e9c8bf520a4ca5f (diff) | |
download | volse-hubzilla-80c65ea8f3a9be9238125b7941ae7c875ea9a07c.tar.gz volse-hubzilla-80c65ea8f3a9be9238125b7941ae7c875ea9a07c.tar.bz2 volse-hubzilla-80c65ea8f3a9be9238125b7941ae7c875ea9a07c.zip |
move code syntax highlighting to plugin
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 4c551d6ab..0d2fb8c74 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -615,10 +615,7 @@ function bb_code_options($match) { } function bb_highlight($match) { - $lang = ((in_array(strtolower($match[1]),['php','css','mysql','sql','abap','diff','html','perl','ruby', - 'vbscript','avrc','dtd','java','xml','cpp','python','javascript','js','json','sh'])) - ? strtolower($match[1]) : 'php' ); - return text_highlight($match[2],$lang); + return text_highlight($match[2],strtolower($match[1])); } function bb_fixtable_lf($match) { |