insert_event() does not save subject
-
Hi,
In the
WP_CRM_F::insert_event()
method, the database table has a “subject” column however it is not being inserted incore/class_functions.php
line 3037. It should read:$wpdb->insert($wpdb->crm_log ? $wpdb->crm_log : $wpdb->base_prefix . 'crm_log', array( 'object_id' => isset($args['object_id'])?$args['object_id']:'', 'object_type' => isset($args['object_type'])?$args['object_type']:'', 'user_id' => isset($args['user_id'])?$args['user_id']:'', 'attribute' => isset($args['attribute'])?$args['attribute']:'', 'action' => isset($args['action'])?$args['attribute']:'', 'value' => isset($args['value'])?$args['value']:'', 'email_from' => isset($args['email_from'])?$args['email_from']:'', 'email_to' => isset($args['email_to'])?$args['email_to']:'', 'subject' => isset($args['subject'])?$args['subject']:'', 'text' => isset($args['text'])?$args['text']:'', 'other' => isset($args['other'])?$args['other']:'', 'time' => isset($args['time'])?$args['time']:'' ));
- The topic ‘insert_event() does not save subject’ is closed to new replies.