From ca07aac9a045db0f7ba24bcce4f7505370cf8f33 Mon Sep 17 00:00:00 2001 From: objec Date: Tue, 5 May 2026 15:38:37 +0400 Subject: [PATCH] Bugfixes - Remove extra column header for actions. - Add language for code block in CLAUDE.md Signed-off-by: objec --- CLAUDE.md | 4 ++-- app/Helpers/tabular_helper.php | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 622835b27..06bfce5b2 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -43,7 +43,7 @@ Tests require a MariaDB/MySQL database (see CI config in `.github/workflows/phpu ### Directory Layout -``` +```text app/ ├── Config/ # CI4 config classes ├── Controllers/ # ~27 controllers (Sales, Items, Reports, Customers, etc.) @@ -101,4 +101,4 @@ Plugins live in `app/Plugins//` and are auto-discovered by `PluginMa - `app.allowedHostnames` **must** be set in production (host header injection protection) - HTMLPurifier is used for HTML sanitization; Laminas Escaper for output escaping - CSRF tokens are managed via `Token_lib`; do not bypass CI4's CSRF filter -- Session storage is database-backed (`ospos_sessions` table) for multi-instance support \ No newline at end of file +- Session storage is database-backed (`ospos_sessions` table) for multi-instance support diff --git a/app/Helpers/tabular_helper.php b/app/Helpers/tabular_helper.php index 4acc85223..50d7fb4ff 100644 --- a/app/Helpers/tabular_helper.php +++ b/app/Helpers/tabular_helper.php @@ -940,7 +940,6 @@ function plugin_headers(): array ['description' => lang('Plugins.description')], ['version' => lang('Plugins.version'), 'escape' => false], ['status' => lang('Plugins.status'), 'escape' => false], - ['actions' => lang('Plugins.actions'), 'escape' => false], ]; }