jrSearch errors in Activity Log
Using Jamroom
I am using jrSearch 1.6.5. I began to see those errors after update the Search module. And ıt's shema.php is
function jrSearch_db_schema(){
jrCore_db_create_datastore('jrSearch', 'search');
$_tmp = array(
"s_module VARCHAR(64) NOT NULL DEFAULT ''",
"s_id INT(11) UNSIGNED NOT NULL DEFAULT '0'",
"s_mod TINYINT(1) UNSIGNED NOT NULL DEFAULT '1'",
"s_text TEXT NOT NULL",
"UNIQUE s_unique (s_module, s_id, s_mod)",
"FULLTEXT s_text (s_text)"
);
$_db = jrCore_db_query("SHOW VARIABLES WHERE Variable_name = 'version'", 'SINGLE');
if ($_db && is_array($_db) && isset($_db['Value'])) {
$ver = $_db['Value'];
}
else {
$msi = jrCore_db_connect();
$ver = mysqli_get_server_info($msi);
}
if (strpos($ver, '-')) {
list($ver,) = explode('-', $ver);
}
$engine = 'MyISAM';
if ($ver && $ver > 5.5) {
$engine = 'InnoDB';
}
jrCore_db_verify_table('jrSearch', 'fulltext', $_tmp, $engine);
return true;
}
I couldn't find any difference
MySQL is v. 5.6.34
So i think i need to wait the next release
Thanks Michael.