diff options
| author | 2013-07-27 13:58:58 +0200 | |
|---|---|---|
| committer | 2013-07-27 13:58:58 +0200 | |
| commit | 22febc135134511b43a8543ea45c49c7aeec6f84 (patch) | |
| tree | e2596663533d36ec017fc1c7e8730245d6de0d19 /app/views/configure/display.phtml | |
| parent | c4dcda6b47594a543046602056c5b7c27df70e39 (diff) | |
Fix issue #101 : option interdiction anonymes
Ajout d'une option pour interdire la lecture anonyme (interdit par
défaut)
Correction de l'internationalisation pour la pagination des logs
Diffstat (limited to 'app/views/configure/display.phtml')
| -rw-r--r-- | app/views/configure/display.phtml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/configure/display.phtml b/app/views/configure/display.phtml index 7ed5989e2..f8e94c0f2 100644 --- a/app/views/configure/display.phtml +++ b/app/views/configure/display.phtml @@ -31,6 +31,10 @@ <div class="group-controls"> <input type="email" id="mail_login" name="mail_login" value="<?php echo $mail ? $mail : ''; ?>" placeholder="<?php echo Translate::t ('blank_to_disable'); ?>" /> <noscript><b><?php echo Translate::t ('javascript_should_be_activated'); ?></b></noscript> + <label class="checkbox" for="anon_access"> + <input type="checkbox" name="anon_access" id="anon_access" value="yes"<?php echo $this->conf->anonAccess () == 'yes' ? ' checked="checked"' : ''; ?> /> + <?php echo Translate::t ('allow_anonymous'); ?> + </label> </div> </div> |
