This commit is contained in:
Jordan
2026-04-15 20:00:09 +01:00
parent f64a790b9b
commit 130a84a093
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ if (!@$apartado) {
include "footer.php";
$resultInclude = ob_get_clean();
if (detect_error_on_code($resultInclude)){
if (!detect_error_on_code($resultInclude)){
echo $resultInclude;
}else{
echo error_html($resultInclude,true);
@@ -47,7 +47,7 @@ if (!@$apartado) {
$resultInclude = ob_get_clean();
if (detect_error_on_code($resultInclude)){
if (!detect_error_on_code($resultInclude)){
echo $resultInclude;
}else{
echo error_html($resultInclude);

View File

@@ -392,7 +392,7 @@ addPlugins("pre_render",$resultInclude);
if (class_exists("CocoDB") && isset(CocoDB::$force_redis_html) && CocoDB::$force_redis_html && @$hash){
CocoDB::cacheSet(@$hash,$resultInclude);
}
if (detect_error_on_code($resultInclude) ){
if (!detect_error_on_code($resultInclude) ){
echo $resultInclude;
}else{
echo error_html($resultInclude);