Fix dictionary not returning alphabeticalOrder;

Needs fix to include in db!
This commit is contained in:
Robbie Antenesse 2019-05-28 00:11:38 -06:00
parent e806f53076
commit 373414d5c0
1 changed files with 2 additions and 0 deletions

View File

@ -103,6 +103,7 @@ VALUES ($new_id, ?, ?, ?, ?)";
'description' => $result['description'],
'createdBy' => $result['public_name'],
'partsOfSpeech' => explode(',', $partsOfSpeech),
'alphabeticalOrder' => array(),
'details' => array(
'phonology' => array(
'consonants' => $result['consonants'] !== '' ? explode(' ', $result['consonants']) : array(),
@ -172,6 +173,7 @@ VALUES ($new_id, ?, ?, ?, ?)";
'specification' => $result['specification'],
'description' => $result['description'],
'partsOfSpeech' => explode(',', $partsOfSpeech),
'alphabeticalOrder' => array(),
'details' => array(
'phonology' => array(
'consonants' => $result['consonants'] !== '' ? explode(' ', $result['consonants']) : array(),