From facd23ad038938c739172a26347f1fee7c42b84c Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Mon, 9 Mar 2015 01:40:44 +0100 Subject: [PATCH] 'checked' must be false because else the browser won't send any location and it is better for privacy ... :-) Signed-off-by: Roland Haeder --- lib/noticeform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/noticeform.php b/lib/noticeform.php index c5c8748dcd..698d1f6a60 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -265,7 +265,7 @@ class NoticeForm extends Form 'type' => 'checkbox', 'class' => 'checkbox', 'id' => $this->id() . '-notice_data-geo', - 'checked' => true, // ? + 'checked' => false, // Must be unchecked by default )); $this->out->element('label', array('class' => 'notice_data-geo', 'for' => $this->id().'-notice_data-geo'), -- 2.39.2