Keep Calendar server settings in groupware but link mail server settings

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
pull/13796/head
Jan-Christoph Borchardt 6 years ago committed by Julius Härtl
parent 280dce8dbc
commit 3508c2368f
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
  1. 2
      apps/dav/lib/Settings/CalDAVSettings.php
  2. 2
      apps/dav/templates/settings-admin-caldav.php
  3. 2
      apps/dav/tests/unit/Settings/CalDAVSettingsTest.php

@ -57,7 +57,7 @@ class CalDAVSettings implements ISettings {
* @return string
*/
public function getSection() {
return 'server';
return 'groupware';
}
/**

@ -37,7 +37,7 @@ script('dav', [
<?php ($_['send_invitations'] === 'yes') ? print_unescaped('checked="checked"') : null ?>/>
<label for="caldavSendInvitations"><?php p($l->t('Send invitations to attendees')); ?></label>
<br>
<em><?php p($l->t('Please make sure to properly set up the email settings above.')); ?></em>
<em><?php p($l->t('Please make sure to properly set up the email server.')); ?> <a href="../admin#mail_general_settings"></a></em>
</p>
<p>
<input type="checkbox" name="caldav_generate_birthday_calendar" id="caldavGenerateBirthdayCalendar" class="checkbox"

@ -49,7 +49,7 @@ class CalDAVSettingsTest extends TestCase {
}
public function testGetSection() {
$this->assertEquals('server', $this->settings->getSection());
$this->assertEquals('groupware', $this->settings->getSection());
}
public function testGetPriority() {

Loading…
Cancel
Save