Fix incorrect data pulled in phonotactics exception
This commit is contained in:
parent
53d808fe30
commit
b8fa80b34b
|
@ -101,7 +101,7 @@ VALUES ($new_id, ?, ?, ?, ?)";
|
||||||
'onset' => $result['onset'] !== '' ? explode(',', $result['onset']) : array(),
|
'onset' => $result['onset'] !== '' ? explode(',', $result['onset']) : array(),
|
||||||
'nucleus' => $result['nucleus'] !== '' ? explode(',', $result['nucleus']) : array(),
|
'nucleus' => $result['nucleus'] !== '' ? explode(',', $result['nucleus']) : array(),
|
||||||
'coda' => $result['coda'] !== '' ? explode(',', $result['coda']) : array(),
|
'coda' => $result['coda'] !== '' ? explode(',', $result['coda']) : array(),
|
||||||
'exceptions' => $result['parts_of_speech'],
|
'exceptions' => $result['exceptions'],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
'orthography' => array(
|
'orthography' => array(
|
||||||
|
|
Loading…
Reference in New Issue