Skip to content

Commit

Permalink
Fix typo in Manager.php
Browse files Browse the repository at this point in the history
  • Loading branch information
alexymik authored Oct 15, 2019
1 parent 613ec72 commit 41d113e
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 41d113e

Please sign in to comment.