ver. 0.309: ApiloLogger + cache-busting CSS/JS + poprawki UI
- ApiloLogger: logowanie operacji Apilo do pp_log z kontekstem JSON - Cache-busting: ?ver=filemtime() dla CSS i JS w admin main-layout - Fix: inicjalizacja $mdb przed SettingsRepository w admin/index.php - Fix: rzutowanie (string) w ShopProductController::escapeHtml() - UI: text-overflow ellipsis dla kategorii produktow + title tooltip - JS: navigator.clipboard API w copyToClipboard() z fallbackiem - CSS: uproszczenie .site-content, usuniecie .with-menu - Migracja: pp_log + kolumny action, order_id, context Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
5
migrations/0.309.sql
Normal file
5
migrations/0.309.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
ALTER TABLE pp_log ADD COLUMN `action` VARCHAR(100) NULL DEFAULT NULL AFTER `id`;
|
||||
ALTER TABLE pp_log ADD COLUMN `order_id` INT NULL DEFAULT NULL AFTER `action`;
|
||||
ALTER TABLE pp_log ADD COLUMN `context` TEXT NULL DEFAULT NULL AFTER `message`;
|
||||
ALTER TABLE pp_log ADD INDEX `idx_action` (`action`);
|
||||
ALTER TABLE pp_log ADD INDEX `idx_order_id` (`order_id`);
|
||||
Reference in New Issue
Block a user