diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2022-07-05 08:10:57 +0000 |
|---|---|---|
| committer | David Siegfried <david.siegfried@uni-vechta.de> | 2022-07-05 08:10:57 +0000 |
| commit | 5daa16263ff663df9d150e0e1bd268f3404a9009 (patch) | |
| tree | 0aac53d37e33a68493fd92fa526c028017aac461 /lib/evaluation | |
| parent | 4dcb91c6db6921c5a5ba538d7171a8500a6d25c2 (diff) | |
fix case of classes, fixes #1263
Closes #1263
Merge request studip/studip!771
Diffstat (limited to 'lib/evaluation')
| -rw-r--r-- | lib/evaluation/classes/EvaluationTreeEditView.class.php | 6 | ||||
| -rw-r--r-- | lib/evaluation/evaluation_admin_overview.inc.php | 4 | ||||
| -rw-r--r-- | lib/evaluation/evaluation_admin_overview.lib.php | 12 |
3 files changed, 11 insertions, 11 deletions
diff --git a/lib/evaluation/classes/EvaluationTreeEditView.class.php b/lib/evaluation/classes/EvaluationTreeEditView.class.php index ef053c7..ea2e67c 100644 --- a/lib/evaluation/classes/EvaluationTreeEditView.class.php +++ b/lib/evaluation/classes/EvaluationTreeEditView.class.php @@ -2515,7 +2515,7 @@ class EvaluationTreeEditView $tr = new HTML ("tr"); - $td = new HTMl ("td"); + $td = new HTML ("td"); $td->addAttr("class", "table_row_odd"); $td->addAttr("colspan", "2"); @@ -2529,13 +2529,13 @@ class EvaluationTreeEditView $tr = new HTML ("tr"); - $td = new HTMl ("td"); + $td = new HTML ("td"); $td->addAttr("style", "border-bottom:0px dotted black;"); $td->addContent(_("Die Fragen dieses Blocks müssen beantwortet werden (Pflichtfelder):")); $tr->addContent($td); - $td = new HTMl ("td"); + $td = new HTML ("td"); $td->addAttr("style", "border-bottom:0px dotted black;"); $input = new HTMLempty ("input"); diff --git a/lib/evaluation/evaluation_admin_overview.inc.php b/lib/evaluation/evaluation_admin_overview.inc.php index d02f77b..32b7a5f 100644 --- a/lib/evaluation/evaluation_admin_overview.inc.php +++ b/lib/evaluation/evaluation_admin_overview.inc.php @@ -305,7 +305,7 @@ $evalIDArray = $db->getEvaluationIDs($rangeID, EVAL_STATE_ACTIVE); $tr = new HTML ("tr"); $td = new HTML ("td"); $td->addAttr("class", "blank"); -$td->addContent(new HTMLEmpty("br")); +$td->addContent(new HTMLempty("br")); $b = new HTML ("b"); $b->addContent(_("Laufende Evaluationen:")); $td->addContent($b); @@ -339,7 +339,7 @@ $evalIDArray = $db->getEvaluationIDs($rangeID, EVAL_STATE_STOPPED); $tr = new HTML ("tr"); $td = new HTML ("td"); $td->addAttr("class", "blank"); -$td->addContent(new HTMLEmpty("br")); +$td->addContent(new HTMLempty("br")); $b = new HTML ("b"); $b->addContent(_("Beendete Evaluationen:")); $td->addContent($b); diff --git a/lib/evaluation/evaluation_admin_overview.lib.php b/lib/evaluation/evaluation_admin_overview.lib.php index 6e70ac7..09a6b0b 100644 --- a/lib/evaluation/evaluation_admin_overview.lib.php +++ b/lib/evaluation/evaluation_admin_overview.lib.php @@ -323,7 +323,7 @@ class EvalOverview $form->addAttr("style", "display:inline;"); $form->addHTMLContent(CSRFProtection::tokenTag()); - $input = new HTMLEmpty("input"); + $input = new HTMLempty("input"); $input->addAttr("type", "hidden"); $input->addAttr("name", "evalID"); $input->addAttr("value", $evalID); @@ -469,14 +469,14 @@ class EvalOverview $form->addAttr("style", "display:inline;"); $form->addHTMLContent(CSRFProtection::tokenTag()); - $input = new HTMLEmpty("input"); + $input = new HTMLempty("input"); $input->addAttr("type", "hidden"); $input->addAttr("name", "evalID"); $input->addAttr("value", $evalID); $form->addContent($input); - $a = new HTMLEmpty("a"); + $a = new HTMLempty("a"); $a->addAttr("name", "open"); $table = new HTML("table"); @@ -520,7 +520,7 @@ class EvalOverview // no RuntimeSettings if there are ranges with no permission $td2->addHTMLContent($this->createDomainSettings($eval, $state, $number % 2 ? "eval_grey_border" : "eval_light_border")); - $td2->addContent(new HTMLEmpty("br")); + $td2->addContent(new HTMLempty("br")); $saveButton = Button::create(_('Übernehmen'), 'save_button', ['title' => _('Einstellungen speichern')]); $td2->addContent($saveButton); @@ -528,7 +528,7 @@ class EvalOverview $td2->addHTMLContent($this->createRuntimeSettings($eval, $state, $number % 2 ? "eval_grey_border" : "eval_light_border")); $td2->addHTMLContent($this->createDomainSettings($eval, $state, $number % 2 ? "eval_grey_border" : "eval_light_border")); - $td2->addContent(new HTMLEmpty("br")); + $td2->addContent(new HTMLempty("br")); $saveButton = Button::create(_('Übernehmen'), 'save_button', ['title' => _('Einstellungen speichern')]); @@ -685,7 +685,7 @@ class EvalOverview if ($GLOBALS["perm"]->have_perm("admin")) { $form->addHTMLContent('<label>'); $form->addContent(_("Nach weiteren Bereichen suchen")); - $input = new HTMLEmpty("input"); + $input = new HTMLempty("input"); $input->addAttr("type", "text"); $input->addAttr("name", "search"); $input->addAttr("size", "30"); |
