Removed initial software_upgrade

This commit is contained in:
“VeLiTi”
2025-12-12 10:54:45 +01:00
parent c39a5ca648
commit 2b42013e23
19 changed files with 53 additions and 2132 deletions

View File

@@ -168,10 +168,9 @@ if($is_jwt_valid && str_contains($version, 'v')) {
// END check if endPoint is fileUpload
//------------------------------------------
if ($collection === 'com_log' && file_exists($api_file_post)) {
include_once $api_file_post;
}
elseif (isAllowed($collection,$profile,$permission,'R') === 1 && empty($input) && file_exists($api_file)){
debuglog("API call: collection=$collection, input_empty=" . (empty($input) ? 'true' : 'false') . ", file_exists=" . (file_exists($api_file) ? 'true' : 'false'));
if (isAllowed($collection,$profile,$permission,'R') === 1 && empty($input) && file_exists($api_file)){
include_once $api_file;
}