Skip to content

Commit

Permalink
* [MOD] Bump version&build numbers
Browse files Browse the repository at this point in the history
* [FIX] Wrong behavior when setting security token on log/audit module. Thanks to @schleyk  for the feedback. Closes #1182

Signed-off-by: Rubén D <[email protected]>
  • Loading branch information
nuxsmin committed Jan 20, 2019
1 parent 6ca3b4b commit 5dcc450
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 14 deletions.
3 changes: 2 additions & 1 deletion app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,9 @@ private function getRefrestAction()
$gridAction->setName(__('Refresh'));
$gridAction->setTitle(__('Refresh'));
$gridAction->setIcon($this->icons->getIconRefresh());
$gridAction->setOnClickFunction('appMgmt/search');
$gridAction->setOnClickFunction('eventlog/refresh');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::EVENTLOG_SEARCH));
$gridAction->addData('action-form', 'frmSearchEvent');

return $gridAction;
}
Expand Down
3 changes: 2 additions & 1 deletion app/modules/web/Controllers/Helpers/Grid/TrackGrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,9 @@ private function getRefrestAction()
$gridAction->setName(__('Refresh'));
$gridAction->setTitle(__('Refresh'));
$gridAction->setIcon($this->icons->getIconRefresh());
$gridAction->setOnClickFunction('appMgmt/search');
$gridAction->setOnClickFunction('track/refresh');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::TRACK_SEARCH));
$gridAction->addData('action-form', 'frmSearchTrack');

return $gridAction;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/SP/Services/Install/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ final class Installer extends Service
*/
const VERSION = [3, 0, 1];
const VERSION_TEXT = '3.0';
const BUILD = 19012001;
const BUILD = 19012002;

/**
* @var DatabaseSetupInterface
Expand Down
6 changes: 6 additions & 0 deletions public/js/app-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -1310,6 +1310,9 @@ sysPass.Actions = function (log) {
}
}
});
},
refresh: function ($obj) {
$('#' + $obj.data("action-form")).submit();
}
};

Expand Down Expand Up @@ -1857,6 +1860,9 @@ sysPass.Actions = function (log) {
}
}
});
},
refresh: function ($obj) {
$('#' + $obj.data("action-form")).submit();
}
};

Expand Down
22 changes: 11 additions & 11 deletions public/js/app-actions.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5dcc450

Please sign in to comment.