Skip to content

Commit

Permalink
Fixes #456
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredF committed Jul 30, 2014
1 parent 8f27b65 commit f31ea41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/common/weather_tides.pl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Category = Weather

#@ This script collects information about ocean tides, moonrise and moonset from the
#@ <a href=http://tbone.biol.sc.edu/tide>University of Southern Carolina Tide Predictor<a>.
#@ <a href="http://tbone.biol.sc.edu/tide">University of Southern Carolina Tide Predictor</a>.
#@ Set the weather_tide_site ini parameter to the tide site closest to you.

# 12/04/05 created by David Norwood based on idea by Joey French
Expand All @@ -15,7 +15,7 @@
$v_read_tides = new Voice_Cmd 'When is the next [High Tide,Low Tide,Moonrise,Moonset]?';
$v_read_tides ->set_info('Show tide, moonrise and moonset information from the Internet');
$p_get_tides = new Process_Item;
$tide_site = $config_parms{'weather_tide_site'} if $config_parms{'weather_tide_site'};
$tide_site = $config_parms{weather_tide_site} if $config_parms{weather_tide_site};
$tide_site = &escape($tide_site);
set $p_get_tides "get_url http://tbone.biol.sc.edu/tide/tideshow.cgi?site=$tide_site $f_tides";
trigger_delete "get tide info";
Expand Down

0 comments on commit f31ea41

Please sign in to comment.