diff options
author | Brion Vibber <brion@pobox.com> | 2010-06-10 10:30:07 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-06-10 10:30:07 -0700 |
commit | 1768bfa04b2c046fd21657d47782250872f5687b (patch) | |
tree | bd71511439c98e96980e00c3c63192260a4699a9 /plugins | |
parent | 02c68ff5230e505dcfbb1dbd764415db8b8379ee (diff) |
Ticket #2349: fix for Geonames semantic reference URLs in FOAF output (corrects a typo in the patch added in 4463768b)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/GeonamesPlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GeonamesPlugin.php b/plugins/GeonamesPlugin.php index bc5899943..3815a31fa 100644 --- a/plugins/GeonamesPlugin.php +++ b/plugins/GeonamesPlugin.php @@ -376,7 +376,7 @@ class GeonamesPlugin extends Plugin return true; } - $url = 'http://sw.geonames.org/' . $location->location_id . '/'; + $url = 'http://sws.geonames.org/' . $location->location_id . '/'; // it's been filled, so don't process further. return false; |