diff --git a/archive/community.applications-2021.07.15-x86_64-1.txz b/archive/community.applications-2021.07.15-x86_64-1.txz index fcde70d8..df814831 100644 Binary files a/archive/community.applications-2021.07.15-x86_64-1.txz and b/archive/community.applications-2021.07.15-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 e9170cde..0a90ec8b 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 @@ -17,7 +17,7 @@ b2871feeb961b0c3cf92cf755117d3a8 ./include/exec.php eb76c1b6ed3da5e5b393f22d2ec18430 ./javascript/libraries.js e29c13353bc1277fc2c3597782d7c954 ./skins/Narrow/css.php e7bf62923b2d7109b6848554701e12f6 ./skins/Narrow/skin.html -f61943ef2af01f093ad21ac325dbace5 ./skins/Narrow/skin.php +0400b49b0c11315a744cdd9bb414154e ./skins/Narrow/skin.php 430966e5646376b62905b63a30de7102 ./scripts/PluginAPI.php 11eecc7264a3057ee70cc00a24c8299b ./scripts/installMulti.php ce2c904b6a40c4677a3ff3484776959e ./scripts/installMultiPlugin.sh 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 9184e6f9..cb0549af 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 @@ -582,9 +582,11 @@ function getPopupDescriptionSkin($appNumber) { $template['Changes'] = @plugin("changes",$caPaths['pluginTempDownload']); $template['pluginVersion'] = @plugin("version",$caPaths['pluginTempDownload']) ?: $template['pluginVersion']; } else { - download_url($template['TemplateURL'],$caPaths['pluginTempDownload']); - $xml = readXmlFile($caPaths['pluginTempDownload']); - $template['Changes'] = $xml['Changes']; + if ( ! $template['Changes'] ) { + download_url($template['TemplateURL'],$caPaths['pluginTempDownload']); + $xml = readXmlFile($caPaths['pluginTempDownload']); + $template['Changes'] = $xml['Changes']; + } } $template['Changes'] = Markdown(strip_tags(str_replace(["[","]"],["<",">"],$template['Changes']),"
"));