diff options
author | Niko Tyni <ntyni@iki.fi> | 2008-03-27 22:01:28 +0100 |
---|---|---|
committer | Niko Tyni <ntyni@iki.fi> | 2008-03-27 22:01:28 +0100 |
commit | e3fc044125095d397693cc4f34105beb5423bdc6 (patch) | |
tree | 4fbc303d437b56a33db32780bdc62ef39d87c1fb /lib | |
parent | 8dac72c2ba0a24a27886c7f4544cf01f7efd14d8 (diff) | |
download | smokeping-e3fc044125095d397693cc4f34105beb5423bdc6.tar.gz smokeping-e3fc044125095d397693cc4f34105beb5423bdc6.tar.xz |
another typo fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Smokeping.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Smokeping.pm b/lib/Smokeping.pm index d199749..916f3ef 100644 --- a/lib/Smokeping.pm +++ b/lib/Smokeping.pm @@ -1413,7 +1413,7 @@ sub get_charts ($$$){ for my $chart ( keys %charts ){ $page .= "<h2>$cfg->{Presentation}{charts}{$chart}{title}</h2>\n"; if (not defined $charts{$chart}[0]){ - $page .= "<p>No targets retured by the sorter.</p>" + $page .= "<p>No targets returned by the sorter.</p>" } else { my $tree = $cfg->{Targets}; my $chartentry = $charts{$chart}[0]; @@ -1431,7 +1431,7 @@ sub get_charts ($$$){ my $chart = $open->[1]; $page = "<h1>$cfg->{Presentation}{charts}{$chart}{title}</h1>\n"; if (not defined $charts{$chart}[0]){ - $page .= "<p>No targets retured by the sorter.</p>" + $page .= "<p>No targets returned by the sorter.</p>" } else { my $rank =1; for my $chartentry (@{$charts{$chart}}){ |