summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2026-04-16 12:07:44 +0100
committerlsces <lester@lsces.co.uk>2026-04-16 12:07:44 +0100
commit95cc99beb24708353b078f8a167da315bc055c9e (patch)
tree9a003b594ff60ebc3718a8aaaa1772eaebebda2e
parentd283056b8e8622e7acea944ae12f4072c6d3d872 (diff)
downloadinstall-95cc99beb24708353b078f8a167da315bc055c9e.tar.gz
install-95cc99beb24708353b078f8a167da315bc055c9e.tar.bz2
install-95cc99beb24708353b078f8a167da315bc055c9e.zip
Switch a new install to start up in bithtml rather than tikiwikiV5-php84
-rwxr-xr-xincludes/install_packages.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/includes/install_packages.php b/includes/install_packages.php
index 052c29d..05bd353 100755
--- a/includes/install_packages.php
+++ b/includes/install_packages.php
@@ -485,13 +485,14 @@ if( !empty( $_REQUEST['cancel'] ) ) {
}
// Set the default format to get quicktags and content storing working
- $plugin_file = LIBERTY_PKG_PATH.'plugins/format.tikiwiki.php';
+ // Switched from TIKIWIKI to BITHTML for more modern default
+ $plugin_file = LIBERTY_PKG_PATH.'plugins/format.bithtml.php';
if( is_readable( $plugin_file ) ) {
require_once( $plugin_file );
// manually set the config format to avoid problems
- $gBitSystem->storeConfig( 'liberty_plugin_file_'.PLUGIN_GUID_TIKIWIKI, $plugin_file, LIBERTY_PKG_NAME );
- $gBitSystem->storeConfig( 'liberty_plugin_status_'.PLUGIN_GUID_TIKIWIKI, 'y', LIBERTY_PKG_NAME );
- $gBitSystem->storeConfig( 'default_format', PLUGIN_GUID_TIKIWIKI, LIBERTY_PKG_NAME );
+ $gBitSystem->storeConfig( 'liberty_plugin_file_'.PLUGIN_GUID_BITHTML, $plugin_file, LIBERTY_PKG_NAME );
+ $gBitSystem->storeConfig( 'liberty_plugin_status_'.PLUGIN_GUID_BITHTML, 'y', LIBERTY_PKG_NAME );
+ $gBitSystem->storeConfig( 'default_format', PLUGIN_GUID_BITHTML, LIBERTY_PKG_NAME );
}
// Installing users has some special things to take care of here and needs a separate check.