Fix dictionary not returning alphabeticalOrder;
Needs fix to include in db!
This commit is contained in:
parent
e806f53076
commit
373414d5c0
|
@ -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(),
|
||||
|
|
Loading…
Reference in New Issue