refactor: move Mustache templates to root directory

This commit is contained in:
alistair3149 2021-04-09 11:47:48 -04:00
parent 0e63bb6aef
commit bd3eac63bb
No known key found for this signature in database
GPG key ID: 94D081060FD3DD9C
14 changed files with 1 additions and 1 deletions

View file

@ -143,7 +143,7 @@ class SkinCitizen extends SkinMustache {
);
}
$options['templateDirectory'] = __DIR__ . '/templates';
$options['templateDirectory'] = dirname(__DIR__, 1) . '/templates';
parent::__construct( $options );
}