diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-06-04 10:47:51 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-06-04 10:47:51 +0100 |
| commit | ffdc5f6c7a825995e78e20e5bc84d5de0d2457d8 (patch) | |
| tree | 01fda17a5d4c2fb76730a7a76a084ee22f52c1f6 | |
| parent | 9581a97aa4b9d8df3b28c25572592605c6615d3f (diff) | |
| download | bitweaver-ffdc5f6c7a825995e78e20e5bc84d5de0d2457d8.tar.gz bitweaver-ffdc5f6c7a825995e78e20e5bc84d5de0d2457d8.tar.bz2 bitweaver-ffdc5f6c7a825995e78e20e5bc84d5de0d2457d8.zip | |
Move iconsets from config/ to util/ — update ICONSETS_* constants
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 <noreply@anthropic.com>
| -rwxr-xr-x | config/includes/bit_setup_inc.php | 6 |
1 files 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' ); |
