Skip to content

Commit

Permalink
Merge pull request #193 from BenLubar/xml-export-ordering
Browse files Browse the repository at this point in the history
fix ordering of exported glossword/keyword/nlword
  • Loading branch information
rlpowell authored Sep 4, 2017
2 parents b11281c + be683e3 commit 0d72818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions export/xml-export.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ <h1>Login To Skip This Step</h1>
JOIN natlangwords nlw
ON nlw.wordid = km.natlangwordid
WHERE vbg.langid=$langid
ORDER BY vbg.definitionid, km.place
ORDER BY vbg.definitionid, km.place, nlw.word, nlw.meaning
");
$sth->execute();

Expand Down Expand Up @@ -170,7 +170,7 @@ <h1>Login To Skip This Step</h1>
JOIN natlangwords nlw
ON nlw.wordid = nlwbg.natlangwordid
WHERE vbg.langid=$langid
ORDER BY valsi, nlw.word
ORDER BY valsi, nlw.word, nlw.meaning, nlwbg.place
");
$sth->execute();

Expand Down

0 comments on commit 0d72818

Please sign in to comment.