Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade - Bump minimum upgradable version to 4.6.12 #22238

Merged
merged 2 commits into from
Dec 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions CRM/Core/BAO/RecurringEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -588,15 +588,6 @@ public static function copyCreateEntity($entityTable, $fromCriteria, $newParams,
* An object of /Civi/Core/DAO/Event/PostUpdate containing dao object that was just updated.
*/
public static function triggerUpdate($event) {
// if DB version is earlier than 4.6 skip any processing
static $currentVer = NULL;
if (!$currentVer) {
$currentVer = CRM_Core_BAO_Domain::version();
}
if (version_compare($currentVer, '4.6.alpha1') < 0) {
return;
}

static $processedEntities = [];
$obj =& $event->object;
if (empty($obj->id) || empty($obj->__table)) {
Expand Down Expand Up @@ -661,15 +652,6 @@ public static function triggerInsert($event) {
return;
}

// if DB version is earlier than 4.6 skip any processing
static $currentVer = NULL;
if (!$currentVer) {
$currentVer = CRM_Core_BAO_Domain::version();
}
if (version_compare($currentVer, '4.6.alpha1') < 0) {
return;
}

static $processedEntities = [];
if (empty($obj->id) || empty($obj->__table)) {
return;
Expand Down Expand Up @@ -765,15 +747,6 @@ public static function triggerInsert($event) {
public static function triggerDelete($event) {
$obj =& $event->object;

// if DB version is earlier than 4.6 skip any processing
static $currentVer = NULL;
if (!$currentVer) {
$currentVer = CRM_Core_BAO_Domain::version();
}
if (version_compare($currentVer, '4.6.alpha1') < 0) {
return;
}

static $processedEntities = [];
if (empty($obj->id) || empty($obj->__table) || !$event->result) {
return;
Expand Down
16 changes: 0 additions & 16 deletions CRM/Upgrade/4.6.10.msg_template/civicrm_msg_template.tpl

This file was deleted.

Loading