2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

98_Installer: fix last editor as author

git-svn-id: https://svn.fhem.de/fhem/trunk@18948 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2019-03-17 16:44:50 +00:00
parent c839bff8c4
commit f2673edef5

View File

@ -1053,7 +1053,7 @@ sub CreateSearchList ($$$) {
$found++;
$foundKeywords++;
push @ret, '<h4>' . $keyword . '</h4>';
push @ret, '<h4>#' . $keyword . '</h4>';
my @mAttrs = qw(
modules
@ -1903,6 +1903,7 @@ m/^([^<>\n\r]+?)(?:\s+(\(last release only\)))?(?:\s+(?:<(.*)>))?$/
. $alias
. $FW_CSRF . '">'
. $authorName . '</a>'
. $authorEditorOnly
if ($html);
}
else {
@ -1916,11 +1917,15 @@ m/^([^<>\n\r]+?)(?:\s+(\(last release only\)))?(?:\s+(?:<(.*)>))?$/
. ' search '
. $alias
. $FW_CSRF . '">'
. $alias . '</a>';
. $alias . '</a>'
. $authorEditorOnly;
}
else {
$authorNameEmail =
$authorName . ', alias ' . $alias;
$authorName
. $authorEditorOnly
. ', alias '
. $alias;
}
}
}