Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Praesidiarius committed Feb 1, 2020
1 parent bca8564 commit 691cca6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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.6.1
* @since 1.0.7
*/
const VERSION = '1.0.6.1';
const VERSION = '1.0.7';

public function getConfig() : array {
return include __DIR__ . '/../config/module.config.php';
Expand Down
2 changes: 1 addition & 1 deletion module/Application/view/partial/viewformfields.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if(array_key_exists($this->sTab,$this->layout()->aFormFieldsByTab)) {
foreach($this->layout()->aFormFieldsByTab[$this->sTab] as $oField) { ?>
<!-- Field <?=$oField->fieldkey?> START -->
<div class="form-group <?=$oField->class?>">
<?php if($oField->type != 'partial' && $oField->type != 'gallery') { ?>
<?php if($oField->type != 'partial' && $oField->type != 'gallery' && $oField->type != 'featuredimage') { ?>
<label class="plcViewFormLabel" for="<?=$this->sFormName?>_<?=$oField->fieldkey?>">
<?=$this->translate($oField->label)?>
</label><br/>
Expand Down

0 comments on commit 691cca6

Please sign in to comment.