fix settings (again)
This commit is contained in:
parent
04c6a067fa
commit
444bff5a07
4 changed files with 13 additions and 4 deletions
|
@ -4,6 +4,11 @@ dev
|
||||||
- [ ] fix third-party API (temp removed)
|
- [ ] fix third-party API (temp removed)
|
||||||
- [ ] fix multiline translations
|
- [ ] fix multiline translations
|
||||||
|
|
||||||
|
2023.06.18
|
||||||
|
- require dotclear 2.26
|
||||||
|
- require php 8.1+
|
||||||
|
- fix settings (again)
|
||||||
|
|
||||||
2023.05.13
|
2023.05.13
|
||||||
- require dotclear 2.26
|
- require dotclear 2.26
|
||||||
- require php 8.1+
|
- require php 8.1+
|
||||||
|
|
|
@ -18,7 +18,7 @@ $this->registerModule(
|
||||||
'Translater',
|
'Translater',
|
||||||
'Translate your Dotclear plugins and themes',
|
'Translate your Dotclear plugins and themes',
|
||||||
'Jean-Christian Denis & contributors',
|
'Jean-Christian Denis & contributors',
|
||||||
'2023.05.13',
|
'2023.06.18',
|
||||||
[
|
[
|
||||||
'requires' => [
|
'requires' => [
|
||||||
['php', '8.1'],
|
['php', '8.1'],
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
<modules xmlns:da="http://dotaddict.org/da/">
|
<modules xmlns:da="http://dotaddict.org/da/">
|
||||||
<module id="translater">
|
<module id="translater">
|
||||||
<name>Translater</name>
|
<name>Translater</name>
|
||||||
<version>2023.05.13</version>
|
<version>2023.06.18</version>
|
||||||
<author>Jean-Christian Denis & contributors</author>
|
<author>Jean-Christian Denis & contributors</author>
|
||||||
<desc>Translate your Dotclear plugins and themes</desc>
|
<desc>Translate your Dotclear plugins and themes</desc>
|
||||||
<file>https://github.com/JcDenis/translater/releases/download/v2023.05.13/plugin-translater.zip</file>
|
<file>https://github.com/JcDenis/translater/releases/download/v2023.06.18/plugin-translater.zip</file>
|
||||||
<da:dcmin>2.26</da:dcmin>
|
<da:dcmin>2.26</da:dcmin>
|
||||||
<da:details>https://plugins.dotaddict.org/dc2/details/translater</da:details>
|
<da:details>https://plugins.dotaddict.org/dc2/details/translater</da:details>
|
||||||
<da:support>http://forum.dotclear.org/viewtopic.php?id=39220</da:support>
|
<da:support>http://forum.dotclear.org/viewtopic.php?id=39220</da:support>
|
||||||
|
|
|
@ -56,7 +56,11 @@ class Config extends dcNsProcess
|
||||||
|
|
||||||
try {
|
try {
|
||||||
foreach ($s->listSettings() as $key => $value) {
|
foreach ($s->listSettings() as $key => $value) {
|
||||||
$s->writeSetting($key, $_POST[$key] ?? $value);
|
if (is_bool($value)) {
|
||||||
|
$s->writeSetting($key, !empty($_POST[$key]));
|
||||||
|
} else {
|
||||||
|
$s->writeSetting($key, $_POST[$key] ?? $value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
dcPage::addSuccessNotice(
|
||||||
|
|
Loading…
Reference in a new issue