Skip to content

Commit

Permalink
Fix variable name in POIManager
Browse files Browse the repository at this point in the history
  • Loading branch information
tcort committed May 6, 2010
1 parent 416b129 commit 81a653c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/classes/POIManager.php
Expand Up @@ -68,7 +68,7 @@ public function getWebsite($node_id) {

public function getName($node_id) {
$name = $this->getValue($node_id, "name");
if (!strcmp($website,"Unknown") && !strcmp($this->getValue("highway"),"bus_stop")) {
if (!strcmp($name,"Unknown") && !strcmp($this->getValue("highway"),"bus_stop")) {
$name = "Bus Stop";
}

Expand Down

0 comments on commit 81a653c

Please sign in to comment.