Skip to content
Snippets Groups Projects
Commit 9b13c57a authored by Viola Elsenhans's avatar Viola Elsenhans Committed by Robert Lange
Browse files

refs #19697 [finc] fix syntax errors

parent a669d59c
Branches
Tags
No related merge requests found
...@@ -2027,6 +2027,7 @@ skip-to = "Zu" ...@@ -2027,6 +2027,7 @@ skip-to = "Zu"
Search type = "Suchtyp" Search type = "Suchtyp"
License = "Lizenz" License = "Lizenz"
LicenseIcon = "Lizenz Icon"
fine_date_short = "Gebühr fällig" fine_date_short = "Gebühr fällig"
......
...@@ -2120,6 +2120,7 @@ skip-to = "Skip to " ...@@ -2120,6 +2120,7 @@ skip-to = "Skip to "
Skip to facet = "Skip to your selected search filter '%%filter_name%%'" Skip to facet = "Skip to your selected search filter '%%filter_name%%'"
License = "License" License = "License"
LicenseIcon = "License icon"
fine_date_short = "Fine Date" fine_date_short = "Fine Date"
......
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
<?php ob_start() ?> <?php ob_start() ?>
<?=$label ?> <?=$label ?>
<?php if (isset($data['icon'])): ?> <?php if (isset($data['icon'])): ?>
<img class="collection-data collection-licence-image" src="<?=$data['icon']?>"/> <?php /* finc: add alt-Tag #19697 */ ?>
<img class="collection-data collection-licence-image" src="<?=$data['icon']?>" alt="<?=$this->transEsc('LicenseIcon')?>"/>
<?php endif; ?> <?php endif; ?>
<?php $label = ob_get_contents(); <?php $label = ob_get_contents();
ob_end_clean(); ob_end_clean();
......
...@@ -96,11 +96,12 @@ ...@@ -96,11 +96,12 @@
<?php endif; ?> <?php endif; ?>
*/?> */?>
</div> </div>
<form class="form-inline" method="post" name="bulkActionForm" action="<?=$this->url('cart-searchresultsbulk')?>"> <?php /* de_15: do NOT render search/list-list into the <form>-element, it is causing W3C errors #19697 */ ?>
<?php /* <form class="form-inline" method="post" name="bulkActionForm" action="<?=$this->url('cart-searchresultsbulk')?>"> */ ?>
<?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', $searchDetails + ['idPrefix' => ''])?> <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', $searchDetails + ['idPrefix' => ''])?>
<?=$this->render('search/list-' . $results->getParams()->getView() . '.phtml', $searchDetails)?> <?=$this->render('search/list-' . $results->getParams()->getView() . '.phtml', $searchDetails)?>
<?=$this->paginationControl($results->getPaginator(), 'Sliding', 'search/pagination.phtml', ['results' => $results])?> <?=$this->paginationControl($results->getPaginator(), 'Sliding', 'search/pagination.phtml', ['results' => $results])?>
</form> <?php /* </form> */ ?>
<?php else: ?> <?php else: ?>
<?php /* finc: change h4 to h3 */ ?> <?php /* finc: change h4 to h3 */ ?>
<h3><?=$this->transEsc($params->getDisplayQuery() || ($filterCount ?? 0) > 0 ? 'nohit_heading' : 'collection_empty')?></h3> <h3><?=$this->transEsc($params->getDisplayQuery() || ($filterCount ?? 0) > 0 ? 'nohit_heading' : 'collection_empty')?></h3>
......
...@@ -14,7 +14,7 @@ $this->layout()->breadcrumbs = '<li><a href="' . $this->url('myresearch-home') . ...@@ -14,7 +14,7 @@ $this->layout()->breadcrumbs = '<li><a href="' . $this->url('myresearch-home') .
<h1><?=$this->transEsc('PDA::pda_form_subtitle')?></h1> <h1><?=$this->transEsc('PDA::pda_form_subtitle')?></h1>
<?=$this->flashmessages()?> <?=$this->flashmessages()?>
<form method="post" action="" name="acquisitionForm"> <form method="post" name="acquisitionForm">
<h3><?=$this->transEsc('PDA::pda_form_suggestions_limit')?></h3> <h3><?=$this->transEsc('PDA::pda_form_suggestions_limit')?></h3>
<div class="form-group"> <div class="form-group">
...@@ -30,13 +30,13 @@ $this->layout()->breadcrumbs = '<li><a href="' . $this->url('myresearch-home') . ...@@ -30,13 +30,13 @@ $this->layout()->breadcrumbs = '<li><a href="' . $this->url('myresearch-home') .
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="control-label" for="acquistion_reasons"><?=$this->transEsc('PDA::pda_form_statement_label')?><span class="required">*</span></label> <label class="control-label" for="acquisition_reasons"><?=$this->transEsc('PDA::pda_form_statement_label')?><span class="required">*</span></label>
<textarea id="acquisition_reasons" type="text" cols="50" rows="5" name="reasons" class="form-control"><?=(isset($acquisitionStatement) && !empty($acquisitionStatement)) ? $acquisitionStatement : ''?></textarea> <textarea id="acquisition_reasons" cols="50" rows="5" name="reasons" class="form-control"><?=(isset($acquisitionStatement) && !empty($acquisitionStatement)) ? $acquisitionStatement : ''?></textarea>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="control-label" for="acquistion_proposal"><?=$this->transEsc('PDA::pda_form_proposal_label')?><span class="required">*</span></label> <label class="control-label" for="acquisition_proposal"><?=$this->transEsc('PDA::pda_form_proposal_label')?><span class="required">*</span></label>
<textarea id="acquisition_proposal" class="form-control" type="text" cols="50" rows="5" name="proposal"><?=(isset($acquisitionProposal) && !empty($acquisitionProposal)) ? $acquisitionProposal : ''?></textarea> <textarea id="acquisition_proposal" class="form-control" cols="50" rows="5" name="proposal"><?=(isset($acquisitionProposal) && !empty($acquisitionProposal)) ? $acquisitionProposal : ''?></textarea>
</div> </div>
<div class="form-group"> <div class="form-group">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment