summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-18 09:12:32 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-18 09:12:32 +0100
commit2c1e099d7c511de01ad30bf22bed85eaac88016f (patch)
tree4e2a9c22d97016a036a6e2c9f11d16e25b584756
parentf7359fb2fe916c4a631c3f5d6321123847e7dce4 (diff)
downloadboards-2c1e099d7c511de01ad30bf22bed85eaac88016f.tar.gz
boards-2c1e099d7c511de01ad30bf22bed85eaac88016f.tar.bz2
boards-2c1e099d7c511de01ad30bf22bed85eaac88016f.zip
Update system rebased at v5.0.0
-rwxr-xr-xadmin/upgrades/1.0.1.php94
1 files changed, 0 insertions, 94 deletions
diff --git a/admin/upgrades/1.0.1.php b/admin/upgrades/1.0.1.php
deleted file mode 100755
index 85c9d36..0000000
--- a/admin/upgrades/1.0.1.php
+++ /dev/null
@@ -1,94 +0,0 @@
-<?php
-/**
- * @version $Header$
- */
-global $gBitInstaller;
-
-$infoHash = [
- 'package' => BOARDS_PKG_NAME,
- 'version' => str_replace( '.php', '', basename( __FILE__ )),
- 'description' => "Add boards sections and positioning.",
- 'post_upgrade' => null,
-];
-$gBitInstaller->registerPackageUpgrade( $infoHash, [
-
-[ 'DATADICT' => [
- [ 'CREATE' => [
- 'boards_sections' => "
- section_id I4 PRIMARY,
- section_title C(255)
- ",
- ]],
- // insert new column
- [ 'ALTER' => [
- 'boards' => [
- 'section_id' => [ '`section_id`', 'I4' ],
- 'pos' => [ '`pos`', 'I4' ],
- ], ]],
- [ 'CREATEINDEX' => [
- 'boards_sections_idx' => [ 'boards', 'section_id', [] ],
- ]],
- [ 'CREATESEQUENCE' => [
- 'boards_sections_id_seq',
- ]],
-]],
-
-[ 'PHP' => '
-// Is package installed and enabled
-global $gBitSystem;
-
-$gBitSystem->verifyPackage( "boards" );
-
-require_once( BOARDS_PKG_CLASS_PATH."BitBoardTopic.php");
-
-$oTopic = new BitBoardTopic();
-
-// get a list of all the bad records
-$list_query = "SELECT bt.*
- FROM `".BIT_DB_PREFIX."boards_topics` bt
- INNER JOIN `".BIT_DB_PREFIX."liberty_content` lc ON ( lc.`content_id`= bt.`parent_id` )
- WHERE lc.content_type_guid != ?";
-
-$bind_vars = array( "bitcomment" );
-
-$max_records = 99999;
-
-$map_errors = $oTopic->mDb->query( $list_query, $bind_vars, $max_records );
-
-// fix everything
-// transaction will save us if something goes bad
-$oTopic->StartTrans();
-
-// expunge all the bad records we just got a list of
-$expunge_query = "DELETE FROM `".BIT_DB_PREFIX."boards_topics`
- WHERE `parent_id` IN
- ( SELECT bt.`parent_id`
- FROM `".BIT_DB_PREFIX."boards_topics` bt
- INNER JOIN `".BIT_DB_PREFIX."liberty_content` lc ON ( lc.`content_id`= bt.`parent_id` )
- WHERE lc.content_type_guid != ? )";
-$oTopic->mDb->query( $expunge_query, $bind_vars );
-
-// repopulate the records with the proper parent_id value
-while( $topic = $map_errors->fetchRow() ) {
- $store_hash = $topic;
- $comment_query = "SELECT lcom.`content_id` FROM `".BIT_DB_PREFIX."liberty_comments` lcom WHERE lcom.`comment_id` = ?";
- // if the mapping isnt totally screwed up the parent id should work as a comment_id
- if( $comment_content_id = $oTopic->mDb->getOne( $comment_query, array( $topic["parent_id"] ) ) ){
- // just to be doublely safe, make sure the record doesnt already exist in the table
- if( !$oTopic->mDb->getOne( "SELECT parent_id FROM boards_topics WHERE parent_id = ?", $comment_content_id ) ){
- $store_hash["parent_id"] = $comment_content_id;
- // reinsert the topic
- if( $result = $oTopic->mDb->associateInsert( "boards_topics", $store_hash ) ){
- echo "Table boards_topic mapping repaired for topic/comment content id:" . $comment_content_id . "<br />";
- }
- }else{
- echo "Duplicate record for topic/comment content id:" . $comment_content_id . ", insertion ignored <br />";
- }
- }
-}
-
-$oTopic->CompleteTrans();
-' ],
-
-]);
-?>