Skip to content

Commit

Permalink
Merge pull request #17 from pimcore/11.1-from-7114743095
Browse files Browse the repository at this point in the history
Automated PR
  • Loading branch information
herbertroth authored Dec 6, 2023
2 parents 7706414 + 870592a commit 0ccaab7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function getConfigTreeBuilder(): TreeBuilder
->end()
->end();

ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, ['custom_reports' => '/var/config/custom_reports']);
ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, ['custom_reports' => PIMCORE_CONFIGURATION_DIRECTORY . '/custom_reports']);

return $treeBuilder;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function getConfigTreeBuilder(): TreeBuilder
->end()
->end();

ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, ['staticroutes' => '/var/config/staticroutes']);
ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, ['staticroutes' => PIMCORE_CONFIGURATION_DIRECTORY . '/staticroutes']);

return $treeBuilder;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Tool/MaintenanceModeHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

class MaintenanceModeHelper implements MaintenanceModeHelperInterface
{
protected const ENTRY_ID = 'maintenace_mode';
protected const ENTRY_ID = 'maintenance_mode';

public function __construct(protected RequestStack $requestStack, protected Connection $db)
{
Expand Down

0 comments on commit 0ccaab7

Please sign in to comment.