phpMyAdmin 匯出頁面出現 Field:group: OpenDocument/OpenOffice試算表 has no type 錯誤
請參考 https://github.com/williamdes/phpmyadmintest/commit/47971806316304f650ca1b3742e2a53801d2a794
如上新增綠色處
protected function cleanGroupPaths(array $form): array
{
foreach($form as &$name) {
if (mb_strpos((string) $name, ':group:') === 0) {
$name = str_replace('/', '-', $name);
}
}
return $form;
}
public function loadForm($form_name, array $form)
{
$this->name = $form_name;
$form=$this->cleanGroupPaths($form);
$this->readFormPaths($form);
$this->readTypes();
}
}