Skip to content

Commit 16b9e0e

Browse files
authored
Merge pull request #289 from marsaldev/fix-light-theme-v2
Fix light/dark theme selection (recaptcha v2)
2 parents b9a7cea + 76fedbe commit 16b9e0e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ vendor
44
.github/config.php
55
.github/eicaptcha.zip
66
.github/build.sh
7+
.idea
78
config.xml
89
config_*.xml
910
logs/*.log

src/ConfigForm.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,12 @@ public function renderForm()
210210
'values' => [
211211
[
212212
'id' => 'cdark',
213-
'value' => 0,
213+
'value' => 1,
214214
'label' => $this->l('Dark'),
215215
],
216216
[
217217
'id' => 'clight',
218-
'value' => 1,
218+
'value' => 0,
219219
'label' => $this->l('Light'),
220220
],
221221
],

0 commit comments

Comments
 (0)