diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/maps.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/maps.php b/includes/maps.php index 03bcd81..d41505a 100644 --- a/includes/maps.php +++ b/includes/maps.php @@ -155,9 +155,9 @@ function DisplayMap($mapMatrix, $idprefix = 1, $style = 'normal', $speed = NULL) }
if (isset($_COOKIE['pref_mute']) && $_COOKIE['pref_mute'] == "true") {
- $mutebutton = "<label><input onclick='savePref(\"mute\", this.checked)' type='checkbox' id='$idprefix,mute' checked='checked' />Mute</label>";
+ $mutebutton = "<label><input onclick='setMute(this.checked)' type='checkbox' id='$idprefix,mute' class='checkbox_mute' checked='checked' />Mute</label>";
} else {
- $mutebutton = "<label><input onclick='savePref(\"mute\", this.checked)' type='checkbox' id='$idprefix,mute' />Mute</label>";
+ $mutebutton = "<label><input onclick='setMute(this.checked)' type='checkbox' id='$idprefix,mute' class='checkbox_mute' />Mute</label>";
}
|