fix typo in called method name

pull/3905/head
Anthony Vaccaro 2018-11-27 10:02:25 +10:00
parent caa5d82462
commit eab6ca62e3
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class XmlExport
if ($options['scope'] === 'Attribute') {
return $this->__attributeHandler($data, $options);
} else if($options['scope'] === 'Event') {
return $this->__eventsHandler($data, $options);
return $this->__eventHandler($data, $options);
} else if($options['scope'] === 'Sighting') {
return $this->__sightingsHandler($data, $options);
}