diff options
author | Arun Persaud <arun@nubati.net> | 2013-09-16 17:10:44 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2013-09-16 17:10:44 -0700 |
commit | c42caf707e7b0b9e4e22a2d15b034b39101172e1 (patch) | |
tree | de6fa4e755cd6c076692412baa9379a34aca0807 | |
parent | 3f57e0a5691d34844a25ef4ded69a708b9160ae1 (diff) | |
download | e-DoKo-c42caf707e7b0b9e4e22a2d15b034b39101172e1.tar.gz e-DoKo-c42caf707e7b0b9e4e22a2d15b034b39101172e1.tar.bz2 e-DoKo-c42caf707e7b0b9e4e22a2d15b034b39101172e1.zip |
BUGFIX: fixed selection of spade and heart solo
two typos messed up the solo selction, e.g. the gametype was not the same as the one given in the
enum in the database. Also added an additional check before we set them in the database, so that people
can mess things up when playing with the url directly.
-rw-r--r-- | include/game.php | 11 | ||||
-rw-r--r-- | include/output.php | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/include/game.php b/include/game.php index 7c8064c..86fd53c 100644 --- a/include/game.php +++ b/include/game.php @@ -571,6 +571,17 @@ switch($mystatus) { /* user wants to play a solo */ + /* double check input value */ + $s = $_REQUEST['solo']; + $solos = array('trumpless','jack','queen','trump','club','spade','heart'); + if (!in_array($s, $solos)) + { + $messages[] = sprintf(_('There is a problem with the type of solo you selected (%s does not exist), please go back '. + 'and answer the <a href="%s">question</a> again.'), + $s,$INDEX.'?action=game&me=$me&in=yes'); + break; + } + /* store the info in the user's hand info */ DB_set_solo_by_hash($me,$_REQUEST['solo']); DB_set_sickness_by_hash($me,'solo'); diff --git a/include/output.php b/include/output.php index 6e5f15f..6a61b08 100644 --- a/include/output.php +++ b/include/output.php @@ -274,8 +274,8 @@ function output_check_for_sickness($me,$mycards) echo ' <option value="queen">'._('queen').'</option>'; echo ' <option value="jack">'._('jack').'</option>'; echo ' <option value="club">'._('club').'</option>'; - echo ' <option valvue="spade">'._('spade').'</option>'; - echo ' <option value="hear">'._('heart').'</option>'; + echo ' <option value="spade">'._('spade').'</option>'; + echo ' <option value="heart">'._('heart').'</option>'; echo ' </select>'; echo ' <br />'; |