Skip to content

Commit

Permalink
closes #7
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzaloebiz committed May 14, 2018
1 parent a9ff4c9 commit d2808ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ebizmarts/mailchimp-lib",
"type": "library",
"version": "3.0.20",
"version": "3.0.21",
"description": "API client library for the MailChimp",
"keywords": ["email", "api","mailchimp"],
"homepage": "https://github.com/ebizmarts/mailchimp-lib",
Expand Down
2 changes: 1 addition & 1 deletion src/Mailchimp/Campaigns.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function get($campaignId,$fields=null,$excludeFields=null)
$_params = array();
if($fields) $_params['fields'] = $fields;
if($excludeFields) $_params['exclude_fields'] = $excludeFields;
$this->master->call('campaigns/'.$campaignId,$_params,Mailchimp::GET);
return $this->master->call('campaigns/'.$campaignId,$_params,Mailchimp::GET);
}

/**
Expand Down

0 comments on commit d2808ef

Please sign in to comment.