diff --git a/VERSION b/VERSION index 52e94860..5fde5c40 100644 --- a/VERSION +++ b/VERSION @@ -11,3 +11,4 @@ Changelog * Expandable text inputs expand vertically and reset size on modal open. * 'Move to Column' context menu improvements. * Fix for missing Authorization header on some platforms. + * Fix for missing Automatic Action trigger 'category change'. diff --git a/api/helpers.php b/api/helpers.php index 2b9080be..473d11cd 100644 --- a/api/helpers.php +++ b/api/helpers.php @@ -221,7 +221,7 @@ function loadBoardData($board, $data) { // Clean a user bean for return to front-end. function sanitize($user) { $user['salt'] = null; - $user['ownToken'] = null; + $user->ownToken = []; $user['password'] = null; }