Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
fix undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaleotti committed Feb 11, 2012
1 parent 454c14b commit cb79a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Exception/InvalidBundleException.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __construct($bundle, $usage, $template, array $enabled, $code =
$message = sprintf('You must add %s to the assetic.bundle config to use %s in %s.', $bundle, $usage, $template);

if ($enabled) {
$message .= sprintf(' (currently enabled: %s)', implode(', ', $this->enabled));
$message .= sprintf(' (currently enabled: %s)', implode(', ', $enabled));
}

parent::__construct($message, $code, $previous);
Expand Down

0 comments on commit cb79a85

Please sign in to comment.