2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 06:08:44 +00:00

98_Installer: fix linebreak for search header

git-svn-id: https://svn.fhem.de/fhem/trunk@19118 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2019-04-05 11:34:28 +00:00
parent 24044dfc5b
commit ec86d5b35e

View File

@ -1338,10 +1338,7 @@ sub CreateSearchList ($$@) {
my $header = ''; my $header = '';
my $footer = ''; my $footer = '';
if ($html) { if ($html) {
$header = $header = '<html>';
'<html><div class="detLink installerBack" style="float:right"><a href="?detail='
. $hash->{NAME}
. '">&larr; back to FHEM Installer</a></div>';
$footer = '</html>'; $footer = '</html>';
} }
@ -1424,16 +1421,21 @@ sub CreateSearchList ($$@) {
# Add search input # Add search input
$header .= $header .=
'<form id="fhemsearch" method="get" action="?" onsubmit="cmd.value = \'get ' '<div class="wide">'
. '<form id="fhemsearch" method="get" action="?" onsubmit="cmd.value = \'get '
. $hash->{NAME} . $hash->{NAME}
. ' search \'+ q.value">' . ' search \'+ q.value" style="float: left; margin-right: 2em;">'
. $FW_CSRF_input . $FW_CSRF_input
. '<input type="hidden" name="cmd" value="">' . '<input type="hidden" name="cmd" value="">'
. '<label for="q" style="margin-right: 0.5em;">Search:</label>' . '<label for="q" style="margin-right: 0.5em;">Search:</label>'
. '<input type="text" name="q" id="q" value="' . '<input type="text" name="q" id="q" value="'
. $search . $search
. '" autocorrect="off" autocapitalize="off">' . '" autocorrect="off" autocapitalize="off">'
. '</form>'; . '</form>'
. '<div class="detLink installerBack" style="float: right"><a href="?detail='
. $hash->{NAME}
. '">&larr; back to FHEM Installer</a></div>'
. '</div>';
my $found = 0; my $found = 0;
@ -3166,9 +3168,11 @@ m/^([^<>\n\r]+?)(?:\s+(\(last release only\)))?(?:\s+(?:<(.*)>))?$/
. $tdOpen . $tdOpen
. 'Module metadata do not contain any prerequisites.' . "\n" . 'Module metadata do not contain any prerequisites.' . "\n"
. 'For automatic source code analysis, please install ' . 'For automatic source code analysis, please install '
. ( $html . (
$html
? '<a href="https://gist.github.com/jpawlowski/8f6503bcf0356b3e64a98b8b35508e57" target="_blank">' ? '<a href="https://gist.github.com/jpawlowski/8f6503bcf0356b3e64a98b8b35508e57" target="_blank">'
: '' ) : ''
)
. 'Perl::PrereqScanner::NotQuiteLite' . 'Perl::PrereqScanner::NotQuiteLite'
. ( $html ? '</a>' : '' ) . ( $html ? '</a>' : '' )
. ' first.' . ' first.'