Skip to content

Commit

Permalink
refactor: update getEmptyTemplatePath() method
Browse files Browse the repository at this point in the history
  • Loading branch information
rivexe committed Feb 13, 2024
1 parent 4d1f113 commit 1e5c3dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/templatemanager.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public static function getEmptyTemplatePath($lang, $ext) {
$lang = "en";
}

return \dirname(__DIR__) . DIRECTORY_SEPARATOR . "assets" . DIRECTORY_SEPARATOR . self::$localPath[$lang] . DIRECTORY_SEPARATOR . "new" . $ext;
return \dirname(__DIR__) . DIRECTORY_SEPARATOR . "assets" . DIRECTORY_SEPARATOR . "document-templates" . DIRECTORY_SEPARATOR . self::$localPath[$lang] . DIRECTORY_SEPARATOR . "new" . $ext;
}

/**
Expand Down

0 comments on commit 1e5c3dd

Please sign in to comment.