Closed (fixed)
Project:
Commerce CIB
Version:
7.x-2.5
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Apr 2018 at 13:10 UTC
Updated:
7 May 2018 at 13:04 UTC
Jump to comment: Most recent
hook_install is missing, so transaction entity fields not installed at fresh install, only if upgrading from older version. Patch:
--- a/all/modules/commerce_cib/commerce_cib.install
+++ b/all/modules/commerce_cib/commerce_cib.install
@@ -1,9 +1,19 @@
<?php
/**
* @file
- * Install file for COmmerce CIB module.
+ * Install file for Commerce CIB module.
*/
+
+/**
+ * Implements hook_install()
+ */
+function commerce_cib_install(){
+ // Set up transaction fields
+ _commerce_cib_configure_payment_entity();
+}
+
+
/**
* Implements hook_requirements().
*/
Comments
Comment #3
czigor commentedCommitted, thanks!