From ba8e410b3e20c4001cd49e537dd27acb5296b391 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Wed, 11 Jan 2023 18:29:09 +0100 Subject: Fix a bug in the GeSHi v1.0.9.1 Go highlighter Fix from BenBE via https://github.com/GeSHi/geshi-1.0/issues/149 --- htdocs/application/libraries/geshi/geshi/go.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/htdocs/application/libraries/geshi/geshi/go.php b/htdocs/application/libraries/geshi/geshi/go.php index 83d3cab..b48f843 100644 --- a/htdocs/application/libraries/geshi/geshi/go.php +++ b/htdocs/application/libraries/geshi/geshi/go.php @@ -324,7 +324,9 @@ $language_data = array( 0 => 'color: #cc66cc;' // FIXME: Duplicate array key ), 'NUMBERS' => array( - 0 => 'color: #cc66cc;' + 0 => 'color: #cc66cc;', + 1 => 'color: #cc66cc;', + 2 => 'color: #cc66cc;' ), 'METHODS' => array( 0 => 'color: #004000;' -- cgit v1.2.3