summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/page.inc.php
diff options
context:
space:
mode:
authorSteffen Ritter2017-12-11 15:53:07 +0100
committerSteffen Ritter2017-12-11 15:53:07 +0100
commit56334e26a8acd42fd30a7f4827c5742270e3d373 (patch)
tree287b7a802c2b59b3828df3633ed349f3d42a4e97 /modules-available/dozmod/page.inc.php
parentadded prefered glyphicons to the design guidelines (diff)
downloadslx-admin-56334e26a8acd42fd30a7f4827c5742270e3d373.tar.gz
slx-admin-56334e26a8acd42fd30a7f4827c5742270e3d373.tar.xz
slx-admin-56334e26a8acd42fd30a7f4827c5742270e3d373.zip
[dozmod] Increase limits for maxImageValidityDays and maxLectureValidityDays
Diffstat (limited to 'modules-available/dozmod/page.inc.php')
-rw-r--r--modules-available/dozmod/page.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules-available/dozmod/page.inc.php b/modules-available/dozmod/page.inc.php
index ffb38663..93d38f48 100644
--- a/modules-available/dozmod/page.inc.php
+++ b/modules-available/dozmod/page.inc.php
@@ -351,8 +351,8 @@ class Page_DozMod extends Page
$params = [
'int' => [
- 'maxImageValidityDays' => array('min' => 7, 'max' => 999),
- 'maxLectureValidityDays' => array('min' => 7, 'max' => 999),
+ 'maxImageValidityDays' => array('min' => 7, 'max' => 9999),
+ 'maxLectureValidityDays' => array('min' => 7, 'max' => 9999),
'maxLocationsPerLecture' => array('min' => 0, 'max' => 999),
'maxTransfers' => array('min' => 1, 'max' => 10),
],