From 5ccca11a448ea315a6e64453e630694ba2c20e66 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 21 Nov 2024 20:59:05 +0100 Subject: Rename "rsrc" directories to "static" Stop using "rsrc" as name for the directories which contain static files and rename them to "static". This affects the global static directory and the static sub-directories in the theme directories. If you've stored your own files in the old global "rsrc" directory, you must move them to the new "static" directory. --- core/namespace/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/namespace/Application.php') diff --git a/core/namespace/Application.php b/core/namespace/Application.php index 1f1e6f6..2d5a23c 100644 --- a/core/namespace/Application.php +++ b/core/namespace/Application.php @@ -174,7 +174,7 @@ class Application { # Return absolute file URL #=============================================================================== public static function getFileURL($more = ''): string { - return self::getURL("rsrc/{$more}"); + return self::getURL("static/{$more}"); } #=============================================================================== -- cgit v1.2.3