Skip to content

Commit

Permalink
Fix broken function reference. Fixes #1116
Browse files Browse the repository at this point in the history
  • Loading branch information
jefft committed Jan 4, 2025
1 parent 83f74c7 commit d93b177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upgrades/upgradelibs/status_upgrader.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static function fixActionPlans()
$actions = unserialize($row['actions']);
if (isset($actions['fields']['status'])) {
$oldstatus = $actions['fields']['status']['value'];
$newstatus = upgradeStatus($oldstatus);
$newstatus = Status_Upgrader::upgradeStatus($oldstatus);
if ($oldstatus != $newstatus) {
echo "Updating \n";
$actions['fields']['status']['value'] = $newstatus;
Expand Down

0 comments on commit d93b177

Please sign in to comment.