Skip to content
Snippets Groups Projects
Commit 1ee59c68 authored by vtigerosm's avatar vtigerosm
Browse files

Fixes #559 - Project Summary Broken

Fixes #526 - Google package update in schema
parents 6d531a35 102e8210
No related branches found
No related tags found
No related merge requests found
......@@ -31,4 +31,13 @@ if(defined('VTIGER_UPGRADE')) {
PRIMARY KEY (`scannerid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8", true);
}
$updateModulesList = array( 'Project' => 'packages/vtiger/optional/Projects.zip',
'Google' => 'packages/vtiger/optional/Google.zip');
foreach ($updateModulesList as $moduleName => $packagePath) {
$moduleInstance = Vtiger_Module::getInstance($moduleName);
if($moduleInstance) {
updateVtlibModule($moduleName, $packagepath);
}
}
}
\ No newline at end of file
No preview for this file type
......@@ -213,7 +213,7 @@
{if $PROGRESS_FIELD_MODEL->isViewableInDetailView()}
<div class="pull-left marginRight15">
{assign var=FIELD_INFO value=$PROGRESS_FIELD_MODEL->getFieldInfo()}
{assign var=PICKLIST_VALUES value=$PROGRESS_FIELD_MODEL['picklistvalues']}
{assign var=PICKLIST_VALUES value=$FIELD_INFO['picklistvalues']}
{assign var=FIELD_INFO value=Vtiger_Util_Helper::toSafeHTML(Zend_Json::encode($FIELD_INFO))}
{assign var="SPECIAL_VALIDATOR" value=$PROGRESS_FIELD_MODEL->getValidator()}
<select class="select2" name="{$PROGRESS_FIELD_MODEL->get('name')}" data-validation-engine="validate[{if $PROGRESS_FIELD_MODEL->isMandatory() eq true} required,{/if}funcCall[Vtiger_Base_Validator_Js.invokeValidation]]" data-fieldinfo='{$FIELD_INFO|escape}' {if !empty($SPECIAL_VALIDATOR)}data-validator='{Zend_Json::encode($SPECIAL_VALIDATOR)}'{/if} >
......
......@@ -8,9 +8,9 @@
* All Rights Reserved.
************************************************************************************/
$patch_version = '20170530'; // -ve timestamp before release, +ve timestamp after release.
$patch_version = '20170531'; // -ve timestamp before release, +ve timestamp after release.
$modified_database = '';
$vtiger_current_version = '7.0.0';
$vtiger_current_version = '7.0.1';
$_SESSION['vtiger_version'] = $vtiger_current_version;
?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment