aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlouise <louise>2009-07-01 13:31:01 +0000
committerlouise <louise>2009-07-01 13:31:01 +0000
commit20a8d73794297eb9b6f0ec110cc6ff888480ab9a (patch)
tree786cd26b8a80d0dabd6884c63a774d7f259280ed
parent768584503fa26f8849a57d1c8bdf4f508b2f0cf2 (diff)
Use right equality operator
-rw-r--r--perllib/Problems.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/Problems.pm b/perllib/Problems.pm
index 098572917..17101f6fe 100644
--- a/perllib/Problems.pm
+++ b/perllib/Problems.pm
@@ -6,7 +6,7 @@
# Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org; WWW: http://www.mysociety.org/
#
-# $Id: Problems.pm,v 1.16 2009-07-01 13:02:07 louise Exp $
+# $Id: Problems.pm,v 1.17 2009-07-01 13:31:01 louise Exp $
#
package Problems;
@@ -194,7 +194,7 @@ sub problems_matching_criteria{
if ($problem->{anonymous} == 1){
$problem->{name} = '';
}
- if ($problem->{service} == ''){
+ if ($problem->{service} eq ''){
$problem->{service} = 'Web interface';
}
if ($problem->{council}) {