diff --git a/archive/community.applications-2022.02.27-x86_64-1.txz b/archive/community.applications-2022.02.27-x86_64-1.txz index 71d05460..a39612ec 100644 Binary files a/archive/community.applications-2022.02.27-x86_64-1.txz and b/archive/community.applications-2022.02.27-x86_64-1.txz differ diff --git a/source/community.applications/usr/local/emhttp/plugins/community.applications/ca.md5 b/source/community.applications/usr/local/emhttp/plugins/community.applications/ca.md5 index a64e0053..a797a46b 100644 --- a/source/community.applications/usr/local/emhttp/plugins/community.applications/ca.md5 +++ b/source/community.applications/usr/local/emhttp/plugins/community.applications/ca.md5 @@ -2,7 +2,7 @@ 4e55f7483b661af21a25b677179baffe ./CA_notices.page 42a1658a916a3a3eed2a9f2af80603c4 ./ca_settings.page e718d7825dbdc96a17a915079222b098 ./default.cfg -0a8815124067c1a072dc8729bab6327d ./include/exec.php +6f3ed9b1f10e3c77baffb34836e9e0a5 ./include/exec.php 51a726cbd05fecf5ec30000b29581de7 ./include/helpers.php d827ebdf8c29aa6a9818df043a37721e ./include/paths.php 532fffdf939594c143e679da02bd841e ./javascript/libraries.js @@ -20,4 +20,4 @@ e19c8f05c687dcf03ea0ba2ed7099a6e ./scripts/showStatistics.php 34554a56611dfe625889c82afd5138de ./scripts/updatePluginSupport.php 2da35d3042b93459f171595811d534b3 ./skins/Narrow/css.php e9244df3418ca3e7fa206d9b6e94c6b1 ./skins/Narrow/skin.html -2e236adfd396daa8668951034eb3534e ./skins/Narrow/skin.php +5525acd9e2d7c9f0a74bb98198dfec2e ./skins/Narrow/skin.php diff --git a/source/community.applications/usr/local/emhttp/plugins/community.applications/include/exec.php b/source/community.applications/usr/local/emhttp/plugins/community.applications/include/exec.php index 6d09e50a..dd870efb 100644 --- a/source/community.applications/usr/local/emhttp/plugins/community.applications/include/exec.php +++ b/source/community.applications/usr/local/emhttp/plugins/community.applications/include/exec.php @@ -813,7 +813,7 @@ function get_content() { $searchResults['nameHit'][] = $template; else { if ( filterMatch($filter,array($template['SortName'],$template['RepoShort'],$template['Language'],$template['LanguageLocal'],$template['ExtraSearchTerms'])) ) { - if ( filterMatch($filter,array($template['ExtraSearchTerms'])) && $template['Plugin'] && $template['Author'] == "limetech" ) + if ( filterMatch($filter,array($template['ExtraSearchTerms'])) && $template['Plugin'] && ($template['Author'] == "limetech" || $template['Author'] == "dlandon") ) $searchResults['extraHit'][] = $template; else $searchResults['nameHit'][] = $template; diff --git a/source/community.applications/usr/local/emhttp/plugins/community.applications/skins/Narrow/skin.php b/source/community.applications/usr/local/emhttp/plugins/community.applications/skins/Narrow/skin.php index 80cf36d3..45321b5b 100644 --- a/source/community.applications/usr/local/emhttp/plugins/community.applications/skins/Narrow/skin.php +++ b/source/community.applications/usr/local/emhttp/plugins/community.applications/skins/Narrow/skin.php @@ -887,6 +887,7 @@ function displaySearchResults($pageNumber) { $result['Icon'] = $templates[$templateSearch]['Icon']; $result['Description'] = $templates[$templateSearch]['Overview'] ?: $templates[$templateSearch]['Description']; unset($result['IconFA']); + $result['ID'] = $templates[$templateSearch]['ID']; $result['actionsContext'] = [["icon"=>"ca_fa-template","text"=>tr("Show Template"),"action"=>"doSearch(false,'{$templates[$templateSearch]['Repository']}');"]]; } $ct .= displayCard($result);