This commit is contained in:
Shish 2023-01-11 11:46:42 +00:00
parent f91daba264
commit 0d77a1dc81
3 changed files with 3 additions and 1 deletions

View file

@ -390,6 +390,7 @@ class CronUploader extends Extension
$database->rollback();
}
} catch (\Exception $e) {
// rollback failed, let's just log things and die
}
$failed++;

View file

@ -114,6 +114,7 @@ class ET extends Extension
'origin' => $commitOrigin,
];
} catch (\Exception $e) {
// If we can't get git data, just skip it
}
}

View file

@ -77,7 +77,7 @@ class Page extends BasePage
$custom_sublinks .= "</div>";
}
if ($this->left_enabled == false) {
if (!$this->left_enabled) {
$left_block_html = "";
$main_block_html = "<article id='body_noleft'>{$main_block_html}</article>";
} else {