From 7a2145d2e23275058f2b1f9e568acf9649f9922d Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Tue, 20 Dec 2022 20:36:40 +0100 Subject: [PATCH] cosmetic --- inc/Config.php | 1 - inc/Manage.php | 6 +++--- inc/Utils.php | 7 +++++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/inc/Config.php b/inc/Config.php index 8dc18fa..8c319b9 100644 --- a/inc/Config.php +++ b/inc/Config.php @@ -21,7 +21,6 @@ use dcPage; /* clearbricks ns */ use form; use http; -use path; /* php ns */ use Exception; diff --git a/inc/Manage.php b/inc/Manage.php index 1492767..32c4fc1 100644 --- a/inc/Manage.php +++ b/inc/Manage.php @@ -61,7 +61,7 @@ class Manage $type = isset($_POST['type']) && in_array($_POST['type'], ['plugins', 'themes', 'repository']) ? $_POST['type'] : ''; # Settings - $s = dcCore::app()->blog->settings->get(Core::id()); + $s = dcCore::app()->blog->settings->get(Core::id()); $dir = Utils::getRepositoryDir($s->get('pack_repository')); # Modules @@ -172,7 +172,7 @@ class Manage # Delete } elseif ($action == 'delete') { - $del_success= false; + $del_success = false; foreach ($_POST['modules'] as $root => $id) { if (!file_exists($root) || !files::isDeletable($root)) { dcPage::addWarningNotice(sprintf(__('Undeletable file "%s"', $root))); @@ -287,7 +287,7 @@ class Manage } # Settings - $s = dcCore::app()->blog->settings->get(Core::id()); + $s = dcCore::app()->blog->settings->get(Core::id()); $dir = Utils::getRepositoryDir($s->get('pack_repository')); $is_configured = Utils::is_configured( diff --git a/inc/Utils.php b/inc/Utils.php index 0eca0c8..fc1dce9 100644 --- a/inc/Utils.php +++ b/inc/Utils.php @@ -24,6 +24,9 @@ use form; use html; use path; +/* php */ +use Exception; + class Utils { public static function is_configured(string $repo, string $file_a, string $file_b): bool @@ -235,8 +238,8 @@ class Utils ]) . '" title="' . __('Download') . '">' . html::escapeHTML(basename($module['root'])) . '' . '' . - '' . - html::escapeHTML(dt::str(__('%Y-%m-%d %H:%M'), (int) @filemtime($module['root']))) . + '' . + html::escapeHTML(dt::str(__('%Y-%m-%d %H:%M'), (int) @filemtime($module['root']))) . '' . ''; }