aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/DB/Result
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2012-12-13 21:19:20 +0000
committerMatthew Somerville <matthew@mysociety.org>2012-12-15 00:11:06 +0000
commit40fa72eefc47cf5356d719d6b3b85d22c6937fb8 (patch)
tree74ca47f95d6bfc9adf09326cec1d870a0fb5b78f /perllib/FixMyStreet/DB/Result
parent0b94fccf4d41d674c9544b17983ed6bba12ddf95 (diff)
Rename a few more less important variables.
Diffstat (limited to 'perllib/FixMyStreet/DB/Result')
-rw-r--r--perllib/FixMyStreet/DB/Result/User.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perllib/FixMyStreet/DB/Result/User.pm b/perllib/FixMyStreet/DB/Result/User.pm
index 62bea1dd4..997577b69 100644
--- a/perllib/FixMyStreet/DB/Result/User.pm
+++ b/perllib/FixMyStreet/DB/Result/User.pm
@@ -164,19 +164,19 @@ sub body {
=head2 belongs_to_body
- $belongs_to_body = $user->belongs_to_body( $council_list );
+ $belongs_to_body = $user->belongs_to_body( $bodies );
-Returns true if the user belongs to the comma seperated list of council ids passed in
+Returns true if the user belongs to the comma seperated list of body ids passed in
=cut
sub belongs_to_body {
my $self = shift;
- my $council = shift;
+ my $bodies = shift;
- my %councils = map { $_ => 1 } split ',', $council;
+ my %bodies = map { $_ => 1 } split ',', $bodies;
- return 1 if $self->from_body && $councils{ $self->from_body };
+ return 1 if $self->from_body && $bodies{ $self->from_body };
return 0;
}