Causing issues with the db insert. if longer than 255 it just won't
insert the record.
* so that we're sure the other add-ons see an up to date
* version from this plugin.
*/
-define('GLM_MEMBERS_EVENTS_PLUGIN_VERSION', '1.6.72');
+define('GLM_MEMBERS_EVENTS_PLUGIN_VERSION', '1.6.73');
define('GLM_MEMBERS_EVENTS_PLUGIN_DB_VERSION', '0.1.4');
// This is the minimum version of the GLM Members DB plugin require for this plugin.
}
}
// mySql transactions
+ // Need to limit intro field to no more than 165
+ $intro = substr( $intro, 0, 165 );
$eventData = array(
'status' => '20',
'created' => $date,