aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-30 19:50:41 -0700
committerMario Vavti <mario@mariovavti.com>2017-06-07 09:27:42 +0200
commit80c65ea8f3a9be9238125b7941ae7c875ea9a07c (patch)
treee14bbda97b9ecd0b145ca2cbf7996b8fd31bb033 /include/bbcode.php
parent3a2a7d05084b1f61b5167b287e9c8bf520a4ca5f (diff)
downloadvolse-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.php5
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) {