Skip to content

Commit

Permalink
Merge pull request #15518 from alexymik/manager-typo
Browse files Browse the repository at this point in the history
Fix typo in Manager.php
  • Loading branch information
eileenmcnaughton authored Oct 16, 2019
2 parents 613ec72 + 41d113e commit 1d13789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Extension/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public function disable($keys) {
// This munges order, but makes it comparable.
sort($disableRequirements);
if ($keys !== $disableRequirements) {
throw new CRM_Extension_Exception_DependencyException("Cannot disable extension due dependencies. Consider disabling all these: " . implode(',', $disableRequirements));
throw new CRM_Extension_Exception_DependencyException("Cannot disable extension due to dependencies. Consider disabling all these: " . implode(',', $disableRequirements));
}

foreach ($keys as $key) {
Expand Down

0 comments on commit 1d13789

Please sign in to comment.