Skip to content

Commit

Permalink
moved update back to index it needs db
Browse files Browse the repository at this point in the history
  • Loading branch information
Praesidiarius committed Feb 1, 2020
1 parent 330689f commit 8542181
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "oneplace/oneplace-core",
"description": "onePlace Core Application",
"type": "project",
"version": "1.0.8",
"version": "1.0.9",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
Expand Down
1 change: 1 addition & 0 deletions module/Application/src/Controller/CoreController.php
Original file line number Diff line number Diff line change
Expand Up @@ -783,6 +783,7 @@ protected function checkLicense($sModule) {

$oResponse = json_decode($sAnswer);

# check response
if(is_object($oResponse)) {
# add license to cache
if($oResponse->state == 'success') {
Expand Down
4 changes: 2 additions & 2 deletions module/Application/src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ class Module {
/**
* Module Version
*
* @since 1.0.8
* @since 1.0.9
*/
const VERSION = '1.0.8';
const VERSION = '1.0.9';

public function getConfig() : array {
return include __DIR__ . '/../config/module.config.php';
Expand Down
2 changes: 2 additions & 0 deletions module/Application/view/partial/indextablecell.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
} else {
echo '-';
}
case 'currency':
echo ''.number_format($this->oItem->getTextField($this->oCol->fieldkey),2,',','.');
break;
default:
break;
Expand Down

0 comments on commit 8542181

Please sign in to comment.