This commit is contained in:
Squidly271 2021-05-27 10:15:03 -04:00
parent 7aec6f084e
commit 1ab3f89ed7
4 changed files with 7 additions and 8 deletions

Binary file not shown.

View File

@ -15,9 +15,9 @@ b398273cf7daa62ab00d2de2336ca25f ./README.md
52120efaabf72bcb458de43faf368332 ./include/helpers.php
8f1129e0cdb994c6d1900192252433d8 ./include/paths.php
b73336e163337858313d87c9b923bb92 ./javascript/libraries.js
bb1d296314cc53139d571b2a398f127f ./skins/Narrow/css.php
2ce2ef6894fa1d7bbc05eb932f2dc3c0 ./skins/Narrow/css.php
78ebc06bc2695262f668b359271eccee ./skins/Narrow/skin.html
9e1173a032eac28e0b71fd4866dc81c9 ./skins/Narrow/skin.php
edc275732992c65cdaf5e14a9de881f5 ./skins/Narrow/skin.php
38d1f40cbc64eed32cdb3292e1ec1f6e ./scripts/PluginAPI.php
bbd9dec6c5df486d75c46388c14f09ce ./scripts/installMulti.php
ce2c904b6a40c4677a3ff3484776959e ./scripts/installMultiPlugin.sh

View File

@ -299,7 +299,7 @@ a.appIconsPopUp { text-decoration:none;color:inherit;}
.ca_italic {font-style:italic;}
.ca_bold {font-weight:bold;}
.ca_center {margin:auto;text-align:center;}
p {margin:auto;text-align:center;} /* override styling on popup */
p {margin:auto;text-align:left;margin-bottom:10px;} /* override dynamix styling for popup */
.ca_NoAppsFound {font-size:3rem;margin:auto;text-align:center;}
.ca_NoDockerAppsFound {font-size:3rem;margin:auto;text-align:center;}
.ca_templatesDisplay {display:flex;flex-wrap:wrap;justify-content:center;overflow-x:hidden;}

View File

@ -564,13 +564,12 @@ function getPopupDescriptionSkin($appNumber) {
$ovr = $template['OriginalOverview'] ?: $template['Overview'];
if ( ! $ovr )
$ovr = $template['OriginalDescription'] ?: $template['Description'];
$ovr = str_replace(["[","&lt;"],"<",$ovr);
$ovr = str_replace(["]","&gt;"],">",$ovr);
$ovr = html_entity_decode($ovr);
$ovr = str_replace(["[","]"],["<",">"],$ovr);
$ovr = str_replace("<br>","\n",$ovr);
$ovr = str_replacE(" ","",$ovr);
$ovr = str_replace(" ","&nbsp;&nbsp;&nbsp;&nbsp;",$ovr);
$ovr = markdown(strip_tags($ovr));
$template['Description'] = str_replace("\n","<br>",$ovr);
$template['ModeratorComment'] .= $template['CAComment'];
if ( $template['Plugin'] ) {