diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-09-18 12:43:37 +0200 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-09-18 12:43:37 +0200 |
commit | 8ea62323ae3b193b3088bc07f83ff2108dcca2fd (patch) | |
tree | 75edac7f64c5846ffc20f783caf7c5ff418c08d5 /lib/study | |
parent | 738639355db0dd88682385873c047b3f96969622 (diff) | |
download | Bits-8ea62323ae3b193b3088bc07f83ff2108dcca2fd.tar.gz Bits-8ea62323ae3b193b3088bc07f83ff2108dcca2fd.zip |
Bugfixes.
Diffstat (limited to 'lib/study')
-rw-r--r-- | lib/study/deck.php | 2 |
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; |