Thread Starter
b-ray3
(@b-ray3)
Thread Starter
b-ray3
(@b-ray3)
I think the issue is in the Weekly Schedule plugin. After reading forms, I think I need to make sure the plugin uses UTF8 for encoding the table. Can you help me fix this? I have little experience with coding, but I found the area in the code that I think is relevant:
global $wpdb;
$charset_collate = ”;
if ( version_compare(mysql_get_server_info(), ‘4.1.0’, ‘>=’) ) {
if (!empty($wpdb->charset)) {
$charset_collate .= ” DEFAULT CHARACTER SET $wpdb->charset”;
}
if (!empty($wpdb->collate)) {
$charset_collate .= ” COLLATE $wpdb->collate”;
}
}
Thank you!
Thread Starter
b-ray3
(@b-ray3)
Also, don’t think the & symbol works either 🙁