Skip to content

Commit

Permalink
fix ordering of exported glossword/keyword/nlword
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLubar committed Aug 11, 2015
1 parent f9b4570 commit be683e3
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 be683e3

Please sign in to comment.