From 58988b9c0f6fd263df64614da1b821535254b368 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Wed, 11 Jan 2023 09:12:56 +0900 Subject: [PATCH] Rename edit schemes pages to schemas --- .../20230111_edit_schemas_fix.sql | 7 +++++++ www/admin/{edit_schemes.php => edit_schemas.php} | 0 2 files changed, 7 insertions(+) create mode 100644 4dev/update/20230106_edit_page_update/20230111_edit_schemas_fix.sql rename www/admin/{edit_schemes.php => edit_schemas.php} (100%) diff --git a/4dev/update/20230106_edit_page_update/20230111_edit_schemas_fix.sql b/4dev/update/20230106_edit_page_update/20230111_edit_schemas_fix.sql new file mode 100644 index 00000000..df13982c --- /dev/null +++ b/4dev/update/20230106_edit_page_update/20230111_edit_schemas_fix.sql @@ -0,0 +1,7 @@ +-- Fix for edit_schemes.php DB settings + +-- will not change file name only visual name +UPDATE edit_page SET name = 'Edit Schemas' WHERE filename = 'edit_schemes.php'; + +-- will change BOTH, must have file name renamed too +UPDATE edit_page SET name = 'Edit Schemas', filename = 'edit_schemas.php' WHERE filename = 'edit_schemes.php'; diff --git a/www/admin/edit_schemes.php b/www/admin/edit_schemas.php similarity index 100% rename from www/admin/edit_schemes.php rename to www/admin/edit_schemas.php