master
Squidly271 2024-11-09 09:41:18 -05:00
parent 63ea2691f2
commit 64a82c09c9
4 changed files with 9 additions and 4 deletions

View File

@ -2,8 +2,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "community.applications">
<!ENTITY author "Andrew Zawadzki">
<!ENTITY version "2024.11.08">
<!ENTITY md5 "0a2b17c3bbfe4892c55ad1be2f9995cd">
<!ENTITY version "2024.11.09">
<!ENTITY md5 "f97d83213b0c9f9b3f170d411a0a2423">
<!ENTITY launch "Apps">
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
<!ENTITY github "Squidly271/community.applications">
@ -13,6 +13,11 @@
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;" min="6.12.0" support="https://forums.unraid.net/topic/38582-plug-in-community-applications" icon="users">
<CHANGES>
###2024.11.09
- Fixed: PHP8 warnings under certain circumstances
- Fixed: Popup blocked warning wouldn't disappear
- Fixed: Unable to pin a docker container from within Previous Apps
###2024.11.08
- Security Update

View File

@ -3,7 +3,7 @@
c12622d8281346d37398e96cbb6b8b69 ./ca_settings.page
01ed7990078dee7cecfeda9a4e49377e ./default.cfg
7ebc5221c82d6edbbcadd8255854699d ./include/exec.php
c2365db8bc0db08455e2f6993e6316b4 ./include/helpers.php
becfd5ed96c03d27d4f031d7db3546f2 ./include/helpers.php
277723d8757f4db32ef8b92cda9b7202 ./include/paths.php
7234caf6800479df03abb222aaedaca5 ./javascript/libraries.js
71f911a818d88d3d567f8a2898094ee2 ./README.md

View File

@ -337,7 +337,7 @@ function removeXMLtags(&$template) {
if ( is_array($element) ) {
removeXMLtags($element);
} else {
$tempElement = htmlspecialchars_decode($element);
$tempElement = htmlspecialchars_decode($element??"");
$tempElement = str_replace("<br>","\n",$tempElement);
if ( trim($tempElement) !== trim(strip_tags($tempElement)) ) {
$tempElement = str_replace(["<",">"],["",""],$tempElement);