This commit is contained in:
Squidly271 2022-12-13 10:44:35 -05:00
parent ff80d1aacb
commit b317cd6075
4 changed files with 3 additions and 12 deletions

Binary file not shown.

View File

@ -1,9 +1,9 @@
253bc8277a96c67716a1376e047570ef ./Apps.page
4e55f7483b661af21a25b677179baffe ./CA_notices.page
4c5d4598e1bafa46bd90c27cbe302122 ./ca_settings.page
600469ce287cb1ed78dc6cc11675cfaf ./ca_settings.page
e8d29607ec792ddf9f6832b10ee70fdc ./default.cfg
29f110f50c87f9e8285aca289bce6e57 ./include/exec.php
e63cfb7150febb21ac4e04b783d36c24 ./include/helpers.php
8cb18002feb91c9eb07811a75aabb7b5 ./include/helpers.php
116042a918060278e77379b0dd73482c ./include/paths.php
532fffdf939594c143e679da02bd841e ./javascript/libraries.js
71f911a818d88d3d567f8a2898094ee2 ./README.md

View File

@ -18,15 +18,6 @@ require_once "$docroot/plugins/$plugin/include/paths.php";
require_once "$docroot/plugins/$plugin/include/helpers.php";
$cfg = parse_plugin_cfg($plugin);
/* $apps = readJsonFile($caPaths['community-templates-info']);
$repositories = [];
foreach ($apps as $template) {
if ($template['BranchID'] || $template['Blacklist'] || $template['Deprecated']) continue;
$repositories[str_replace("'","*",$template['Repo'])]++;
}
arsort($repositories); */
function tr($string,$ret=false) {
if ( function_exists("_") )

View File

@ -646,7 +646,7 @@ function getAllInfo($force=false) {
$containers = [];
if ( $force ) {
if ( $caSettings['dockerRunning'] ) {
if ( $caSettings['dockerRunning'] ?? false ) {
$info = $DockerTemplates->getAllInfo(false,true,true);
$containers = $DockerClient->getDockerContainers();
foreach ($containers as &$container) {