aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/admin.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2019-04-14 16:01:27 +0200
committervincent-peugnet <v.peugnet@free.fr>2019-04-14 16:01:27 +0200
commit05ea1fe723534ee29ef757dead0c94d0f6321a0b (patch)
tree586fafeb9cff2aec8d15424266cf2cbdf14072e4 /app/view/templates/admin.php
parent11f0907e2effff7af66040f037a95ab394dbd42c (diff)
downloadwcms-05ea1fe723534ee29ef757dead0c94d0f6321a0b.tar.gz
wcms-05ea1fe723534ee29ef757dead0c94d0f6321a0b.zip
admin global dir bug fix
Diffstat (limited to 'app/view/templates/admin.php')
-rw-r--r--app/view/templates/admin.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/view/templates/admin.php b/app/view/templates/admin.php
index 08126a7..3eba1c4 100644
--- a/app/view/templates/admin.php
+++ b/app/view/templates/admin.php
@@ -134,7 +134,8 @@
<h4>Edit quick menu</h4>
<div class="checkbox">
- <input type="checkbox" name="showeditmenu" id="showeditmenu" <?= Config::showeditmenu() === true ? 'checked' : '' ?>>
+ <input type="hidden" name="showeditmenu" value="false">
+ <input type="checkbox" name="showeditmenu" id="showeditmenu" value="true" <?= Config::showeditmenu() === true ? 'checked' : '' ?>>
<label for="showeditmenu">Show editor menu in top right corner of pages</label>
</div>