Skip to content

Commit

Permalink
Merge pull request #377 from bbommer/master
Browse files Browse the repository at this point in the history
fix for creation of calendar entry
  • Loading branch information
bbommer authored Nov 13, 2019
2 parents 8bc2a40 + 0ec31cb commit f52185f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
Binary file modified packages/vtiger/mandatory/crmtogo.zip
Binary file not shown.
4 changes: 3 additions & 1 deletion pkg/vtiger/modules/crmtogo/languages/de_de/crmtogo.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@
'LBL_LOGOUT'=>'Logout',
'LBL_QUICKCREATE'=>'Erstelle',
'LBL_SIGNATURE'=>'Unterschrift',
'LBL_SIGNATUR_SOURCE'=>'erstellt durch mobile Schnittstelle crmtogo',
'LBL_SIGNATUR_SOURCE'=>'erstellt durch mobile Schnittstelle crmtogo',
'Description Details'=>'Beschreibungsinformationen',

);

?>
1 change: 1 addition & 0 deletions pkg/vtiger/modules/crmtogo/languages/en_us/crmtogo.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
'LBL_QUICKCREATE'=>'Create',
'LBL_SIGNATURE'=>'Signature',
'LBL_SIGNATUR_SOURCE'=>'created by mobile crmtogo',
'Description Details'=>'Description Details',

);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
{foreach item=_BLOCK key=_BLOCKLABEL from=$_RECORD->blocks()}
{assign var=_FIELDS value=$_BLOCK->fields()}
<div data-role="collapsible" data-collapsed="false" data-mini="true" >
<h3>{$_BLOCKLABEL}</h3>
<h3>{vtranslate($_BLOCKLABEL,'crmtogo')}</h3>
<p>
{foreach item=_FIELD from=$_FIELDS}
<div>
Expand Down
4 changes: 2 additions & 2 deletions pkg/vtiger/modules/crmtogo/manifest.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<module>
<exporttime>2019-08-29 12:27:54</exporttime>
<exporttime>2019-11-13 13:32:21</exporttime>
<name>crmtogo</name>
<label>crmtogo</label>
<parent></parent>
<type>extension</type>
<version>4.11</version>
<version>4.12</version>
<dependencies>
<vtiger_version>6.5.0</vtiger_version>
<vtiger_max_version>6.*</vtiger_max_version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function process(crmtogo_API_Request $request) {
if (empty($this->recordValues['visibility'])) {
$this->recordValues['visibility'] = 'Public';
}
unset ( $this->recordValues['time_end']);
//unset ( $this->recordValues['time_end']);
}
$this->recordValues = vtws_create($module, $this->recordValues, $current_user);
}
Expand Down

0 comments on commit f52185f

Please sign in to comment.