Browse Source

Fix at backup.

MOODLE_20_STABLE
Vasilis Daloukas 9 years ago
parent
commit
6bb87dbcf2
  1. 1
      CHANGES.md
  2. 4
      cross/play.php

1
CHANGES.md

@ -1,6 +1,7 @@
Changes in version 3.36.31.1 (2015123101) Changes in version 3.36.31.1 (2015123101)
------------------------------------------------------------------ ------------------------------------------------------------------
- Fix at backup. - Fix at backup.
- Fix not to show how many correct letters are when printing the crossword.
Changes in version 3.36.30.1 (2015123001) Changes in version 3.36.30.1 (2015123001)
------------------------------------------------------------------ ------------------------------------------------------------------

4
cross/play.php

@ -143,7 +143,9 @@ function game_cross_play( $id, $game, $attempt, $crossrec, $g, $onlyshow, $shows
get_string( 'nextgame', 'game').'</a> &nbsp; &nbsp; &nbsp; &nbsp; '; get_string( 'nextgame', 'game').'</a> &nbsp; &nbsp; &nbsp; &nbsp; ';
} }
} else if ($info != '') { } else if ($info != '') {
echo "<br>$info<br>"; if ($print === false) {
echo "<br>$info<br>";
}
} }
if ($attempt->language != '') { if ($attempt->language != '') {

Loading…
Cancel
Save