diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-02-14 00:42:29 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-02-14 00:42:29 -0800 |
commit | f65cf9406397ac688ec4060ba070e172af0cd90b (patch) | |
tree | 391b668b47b1237711b5424722d0be07fb4f9509 /includes | |
parent | a5d4ffe96373a24c398a47165e7079e30735467f (diff) | |
download | pathery-f65cf9406397ac688ec4060ba070e172af0cd90b.tar.xz |
Lots'n Lots of work on the scoreboard...
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 efe17b8..1af64a2 100644 --- a/includes/maps.php +++ b/includes/maps.php @@ -324,9 +324,9 @@ function DisplayMapThumbnail($map, $link = false) { $size = $size.'%';
//$size = '1.2px';
if ($link) {
- $r .= "<table style='cursor:pointer' onclick='document.location.href=\"$link\"' class='map_thumbnail'>";
+ $r .= "<table style='cursor:pointer' onclick='document.location.href=\"$link\"' class='map'>";
} else {
- $r .= "<table style='width:$width;height:$height;' class='map_thumbnail'>";
+ $r .= "<table style='width:$width;height:$height;' class='map'>";
}
for ($y = 0; $y < $map->height; $y++) { //Number of Rows
$r .= "<tr>";
|