Unverified Commit b4b0f9b9 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3309247 by pratik_specbee, neclimdul: Unused $theme_engine variable in...

Issue #3309247 by pratik_specbee, neclimdul: Unused $theme_engine variable in ThemeInitialization.php

(cherry picked from commit 434cecac)
parent e72233af
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ public function getActiveThemeByName($theme_name) {
   */
  public function loadActiveTheme(ActiveTheme $active_theme) {
    // Initialize the theme.
    if ($theme_engine = $active_theme->getEngine()) {
    if ($active_theme->getEngine()) {
      // Include the engine.
      include_once $this->root . '/' . $active_theme->getOwner();
      foreach ($active_theme->getBaseThemeExtensions() as $base) {