<tr>
<th>Bounding box:</th>
- <% if changeset_details.max_lat.nil? or changeset_details.min_lat.nil? or changeset_details.max_lon.nil? or changeset_details.min_lon.nil? %>
+ <% unless changeset_details.has_valid_bbox? %>
<td>No bounding box has been stored for this changeset.</td>
- <%
- else
+ <% else
minlon = changeset_details.min_lon/GeoRecord::SCALE.to_f
minlat = changeset_details.min_lat/GeoRecord::SCALE.to_f
maxlon = changeset_details.max_lon/GeoRecord::SCALE.to_f
<td><%=maxlon -%></td>
</tr>
<tr>
- <td colspan="3" style="text-align:center"><%= minlon -%></td>
+ <td colspan="3" style="text-align:center"><%= minlat -%></td>
</tr>
</table>
</td>