summaryrefslogtreecommitdiff
path: root/lib/study/deck.php
diff options
context:
space:
mode:
authorNicolas BERNSTEIN <alexis211@gmail.com>2011-09-18 12:43:37 +0200
committerNicolas BERNSTEIN <alexis211@gmail.com>2011-09-18 12:43:37 +0200
commit8ea62323ae3b193b3088bc07f83ff2108dcca2fd (patch)
tree75edac7f64c5846ffc20f783caf7c5ff418c08d5 /lib/study/deck.php
parent738639355db0dd88682385873c047b3f96969622 (diff)
downloadBits-8ea62323ae3b193b3088bc07f83ff2108dcca2fd.tar.gz
Bits-8ea62323ae3b193b3088bc07f83ff2108dcca2fd.zip
Bugfixes.
Diffstat (limited to 'lib/study/deck.php')
-rw-r--r--lib/study/deck.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/study/deck.php b/lib/study/deck.php
index 9b9c71f..94790e3 100644
--- a/lib/study/deck.php
+++ b/lib/study/deck.php
@@ -80,7 +80,7 @@ $s = sql(
"SELECT cards.id AS id, cards.name AS name, cards.text_html AS text, cards.number AS number, ".
"card_study.level AS level, card_study.next_review <= CURDATE() AS must_study ".
"FROM card_study LEFT JOIN cards ON card_study.card = cards.id WHERE deck_study = $studyid AND " . get_filter("what") .
- " ORDER BY " . get_filter("order") . " " . get_filter('way'));
+ " ORDER BY " . get_filter("order") . " " . get_filter('way') . (get_filter("order") == "level" ? ", number " . get_filter("way") : ""));
while ($ss = mysql_fetch_assoc($s)) $study_cards[] = $ss;