Skip to content
Snippets Groups Projects
Commit bfc5e222 authored by Demian Katz's avatar Demian Katz
Browse files

Style fix.

parent 67699636
Branches
Tags instance/fid_bbi/staging/20210305
No related merge requests found
...@@ -80,9 +80,10 @@ class Bootstrap ...@@ -80,9 +80,10 @@ class Bootstrap
// Attach remaining theme configuration to the dispatch event: // Attach remaining theme configuration to the dispatch event:
$config =& $this->config; $config =& $this->config;
$events->attach('dispatch', function($event) use ($config) { $callback = function($event) use ($config) {
$theme = new ThemeInitializer($config, $event); $theme = new ThemeInitializer($config, $event);
$theme->init(); $theme->init();
}); };
$events->attach('dispatch', $callback);
} }
} }
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment