diff --git a/packages/vtiger/marketplace/ExtensionStore.zip b/packages/vtiger/marketplace/ExtensionStore.zip index 044895b781a3b160a2183603d366f82e459aad12..c59e2608f3de5a5cf73762ab8f99752adcb2bd61 100644 Binary files a/packages/vtiger/marketplace/ExtensionStore.zip and b/packages/vtiger/marketplace/ExtensionStore.zip differ diff --git a/pkg/vtiger/modules/ExtensionStore/settings/connectors/ExtnStore.php b/pkg/vtiger/modules/ExtensionStore/settings/connectors/ExtnStore.php index a3e5ce16dcb2a65fab983d048f7acadb35d14ab2..aab4dac2027744d4c50fef5d263855620d2138fb 100644 --- a/pkg/vtiger/modules/ExtensionStore/settings/connectors/ExtnStore.php +++ b/pkg/vtiger/modules/ExtensionStore/settings/connectors/ExtnStore.php @@ -176,7 +176,12 @@ class Settings_ExtensionStore_ExtnStore_Connector { * @return type json reponse */ public function getListings($id = null, $type = 'Extension') { - $q = $id ? array('id' => $id, 'type' => $type) : array('type' => $type); + global $vtiger_current_version; + $q = array('type' => $type, 'vv'=> $vtiger_current_version); + if ($id) { + $q['id'] = $id; + } + try { $response = $this->api('/app/listings', 'GET', $q ? array('q' => Zend_Json::encode($q)) : null, false); return array('success' => true, 'response' => $response);