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

Commit

Permalink
Fix: Path to module config
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Dec 3, 2014
1 parent d6962ad commit 6ce34cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module/Application/src/Application/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public function onBootstrap($e)

public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
return include __DIR__ . '/../../config/module.config.php';
}
}
2 changes: 1 addition & 1 deletion module/ZfModule/src/ZfModule/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Module
{
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
return include __DIR__ . '/../../config/module.config.php';
}

public function onBootstrap($e)
Expand Down

0 comments on commit 6ce34cd

Please sign in to comment.