This commit is contained in:
Squidly271 2021-07-15 19:44:53 -04:00
parent f6e19c3a57
commit 9516c40508
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ b2871feeb961b0c3cf92cf755117d3a8 ./include/exec.php
eb76c1b6ed3da5e5b393f22d2ec18430 ./javascript/libraries.js eb76c1b6ed3da5e5b393f22d2ec18430 ./javascript/libraries.js
e29c13353bc1277fc2c3597782d7c954 ./skins/Narrow/css.php e29c13353bc1277fc2c3597782d7c954 ./skins/Narrow/css.php
e7bf62923b2d7109b6848554701e12f6 ./skins/Narrow/skin.html e7bf62923b2d7109b6848554701e12f6 ./skins/Narrow/skin.html
017291050cd1fcba04007dee7795a7e9 ./skins/Narrow/skin.php f61943ef2af01f093ad21ac325dbace5 ./skins/Narrow/skin.php
430966e5646376b62905b63a30de7102 ./scripts/PluginAPI.php 430966e5646376b62905b63a30de7102 ./scripts/PluginAPI.php
11eecc7264a3057ee70cc00a24c8299b ./scripts/installMulti.php 11eecc7264a3057ee70cc00a24c8299b ./scripts/installMulti.php
ce2c904b6a40c4677a3ff3484776959e ./scripts/installMultiPlugin.sh ce2c904b6a40c4677a3ff3484776959e ./scripts/installMultiPlugin.sh

View File

@ -586,7 +586,7 @@ function getPopupDescriptionSkin($appNumber) {
$xml = readXmlFile($caPaths['pluginTempDownload']); $xml = readXmlFile($caPaths['pluginTempDownload']);
$template['Changes'] = $xml['Changes']; $template['Changes'] = $xml['Changes'];
} }
$template['Changes'] = strip_tags(str_replace(["[","]"],["<",">"],$template['Changes']),"<br>"); $template['Changes'] = Markdown(strip_tags(str_replace(["[","]"],["<",">"],$template['Changes']),"<br>"));
$templateDescription .= "<div class='popupTitle'>{$template['Name']}</div>"; $templateDescription .= "<div class='popupTitle'>{$template['Name']}</div>";
$templateDescription .= "<div class='ca_hr'></div>"; $templateDescription .= "<div class='ca_hr'></div>";
@ -820,9 +820,9 @@ function getPopupDescriptionSkin($appNumber) {
} else } else
$appInformation .= " - <font color='#4cc337'>".tr("Latest Version")."</font>"; $appInformation .= " - <font color='#4cc337'>".tr("Latest Version")."</font>";
} }
$appInformation .= Markdown($template['Changes']); $appInformation .= $template['Changes'];
} elseif ($template['Language']) { } elseif ($template['Language']) {
$appInformation .= Markdown(trim($template['Changes'])); $appInformation .= trim($template['Changes']);
} else { } else {
$appInformation = $template['Changes']; $appInformation = $template['Changes'];
$appInformation = str_replace("\n","<br>",$appInformation); $appInformation = str_replace("\n","<br>",$appInformation);