diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | application/libraries/Pygments.php | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,7 @@ This file lists major, incompatible or otherwise important changes, you should look at it after every update. NEXT + - Fix compatability with Pygments 2.4.0 3.3.1 2019-01-28 - Fix CSRF issue breaking multipaste creation page diff --git a/application/libraries/Pygments.php b/application/libraries/Pygments.php index c8e1f8028..074e8a6c1 100644 --- a/application/libraries/Pygments.php +++ b/application/libraries/Pygments.php @@ -38,6 +38,9 @@ class Pygments { $last_desc = ""; foreach (self::get_pygments_info() as $lexer) { + if (empty($lexer['names'])) { + continue; + } $desc = $lexer['fullname']; $name = $lexer['names'][0]; if ($desc == $last_desc) { |