Commit 329e7711 authored by Sebastian Tiede's avatar Sebastian Tiede
Browse files

Fix namespace missing backslash / wrong class

parent 89525e5b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2,14 +2,14 @@

namespace Plugin\Theme;

use Core\PluginBase;
use Core\Plugin\Base;

class Plugin extends PluginBase
class Plugin extends Base
{
    public function initialize()
    {
        $this->template->hook->attach('template:layout:head', 'theme:layout/head');
        $this->template->hook->attach('template:layout:top', 'theme:layout/top');
        $this->template->setTemplateOverride('template:header', 'theme:layout/header');
        $this->template->setTemplateOverride('header', 'theme:layout/header');
    }
}