diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2011-04-19 21:50:34 +0200 |
---|---|---|
committer | Matthew Somerville <matthew@fury.ukcod.org.uk> | 2011-04-21 09:39:28 +0100 |
commit | 4cad5c6e78d299ab6fa3960ccdec50bfa536acbc (patch) | |
tree | a4491cd2db2b708384bd8c2ab0022e564bd662f6 | |
parent | 83bfa3d8c656a9a1422a6f266c44b3d9c398fc51 (diff) |
Add () to avoid confusing the emacs perl parser.
-rwxr-xr-x | web/index.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/index.cgi b/web/index.cgi index c8fdb6158..9f6f2006a 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -345,7 +345,7 @@ sub submit_problem { if ($no_details) { $input{council} =~ s/\Q$no_details\E//; - @input_councils = split /,/, $input{council}; + @input_councils = split(/,/, $input{council}); } # Check category here, won't be present if council is -1 |