示例#1
0
 /**
  * Drop sphinx table
  *
  * @return string|bool error string is returned incase of errors otherwise false
  */
 public function delete_index($acp_module, $u_action)
 {
     if (!$this->index_created()) {
         return false;
     }
     $this->db_tools->sql_table_drop(SPHINX_TABLE);
     return false;
 }