Skip to content

Commit eaac040

Browse files
author
heathdutton
committed
Case correction to avoid notice about array conversion.
1 parent 19c34ef commit eaac040

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Model/Api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1310,8 +1310,8 @@ private function logResults()
13101310
{
13111311
if ($this->valid) {
13121312
$statLevel = 'INFO';
1313-
$message = 'Contact '.$this->contact->getId(
1314-
).' was imported successfully into campaign '.$this->campaign->getname();
1313+
$message = 'Contact '.$this->contact->getId().
1314+
' was imported successfully into campaign '.$this->campaign->getName();
13151315
} else {
13161316
$statLevel = 'ERROR';
13171317
$message = isset($this->errors) ? implode(PHP_EOL, $this->errors) : '';

0 commit comments

Comments
 (0)