Skip to content
This repository was archived by the owner on Nov 2, 2024. It is now read-only.

Commit 82004b7

Browse files
philbertymkaz
authored andcommitted
Remove trailing comma in function call
This trailing comma triggers php parse error. This will block wordpress from starting up fully on php7. Fixes #132
1 parent c795368 commit 82004b7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

settings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
__( 'Color Scheme', 'mkaz_code_syntax_block' ),
3131
'mkaz_code_syntax_block_color_scheme_field_callback',
3232
'mkaz_code_syntax_block_settings', // Section
33-
'mkaz_code_syntax_block_color_scheme', // Setting
33+
'mkaz_code_syntax_block_color_scheme' // Setting
3434
);
3535

3636
add_settings_field(
3737
'mkaz-code-syntax-default-lang',
3838
__( 'Default Language', 'mkaz_code_syntax_block' ),
3939
'mkaz_code_syntax_block_default_lang_field_callback',
4040
'mkaz_code_syntax_block_settings', // Section
41-
'mkaz_code_syntax_block_color_scheme', // Setting
41+
'mkaz_code_syntax_block_color_scheme' // Setting
4242
);
4343
});
4444

0 commit comments

Comments
 (0)