From ffdc5f6c7a825995e78e20e5bc84d5de0d2457d8 Mon Sep 17 00:00:00 2001 From: Lester Caine Date: Thu, 4 Jun 2026 10:47:51 +0100 Subject: Move iconsets from config/ to util/ — update ICONSETS_* constants MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ICONSETS_PATH/URL/URI now point to UTIL_PKG_PATH/URL so the iconset is shared across all packages rather than owned by config. Co-Authored-By: Claude Sonnet 4.6 --- config/includes/bit_setup_inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/includes/bit_setup_inc.php b/config/includes/bit_setup_inc.php index 869cbdc..b365b25 100755 --- a/config/includes/bit_setup_inc.php +++ b/config/includes/bit_setup_inc.php @@ -12,8 +12,8 @@ define( 'THEMES_PATH', CONFIG_PKG_PATH.'themes/' ); define( 'THEMES_URL', CONFIG_PKG_URL.'themes/' ); define( 'THEMES_URI', CONFIG_PKG_URI.'themes/' ); -define( 'ICONSETS_PATH', CONFIG_PKG_PATH.'iconsets/' ); -define( 'ICONSETS_URL', CONFIG_PKG_URL.'iconsets/' ); -define( 'ICONSETS_URI', CONFIG_PKG_URI.'iconsets/' ); +define( 'ICONSETS_PATH', UTIL_PKG_PATH.'iconsets/' ); +define( 'ICONSETS_URL', UTIL_PKG_URL.'iconsets/' ); +define( 'ICONSETS_URI', UTIL_PKG_URL.'iconsets/' ); set_error_handler( '\Bitweaver\bit_error_handler' ); -- cgit v1.3