projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a60550f
)
collection3: Remove duplicate definition of contains_invalid_chars().
author
Florian Forster
<octo@collectd.org>
Sat, 10 Nov 2012 07:58:00 +0000
(08:58 +0100)
committer
Florian Forster
<octo@collectd.org>
Sat, 10 Nov 2012 07:58:39 +0000
(08:58 +0100)
Thanks to Jonathan Amiez for pointing this out!
Fixes Github issue #160.
contrib/collection3/bin/index.cgi
patch
|
blob
|
history
diff --git
a/contrib/collection3/bin/index.cgi
b/contrib/collection3/bin/index.cgi
index
a850271
..
4723af9
100755
(executable)
--- a/
contrib/collection3/bin/index.cgi
+++ b/
contrib/collection3/bin/index.cgi
@@
-262,28
+262,6
@@
sub contains_invalid_chars
return;
}
-sub contains_invalid_chars
-{
- my $str = shift;
-
- for (split (m//, $str))
- {
- my $n = ord ($_);
-
- # Whitespace is allowed.
- if (($n >= 9) && ($n <= 13))
- {
- next;
- }
- elsif ($n < 32)
- {
- return (1);
- }
- }
-
- return;
-}
-
sub show_selector
{
my $timespan_selection = get_timespan_selection ();