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