first commit 2

This commit is contained in:
hmw1001
2026-06-11 18:47:38 +09:00
parent c768729ce6
commit 6f534e33a6
11095 changed files with 1595758 additions and 0 deletions
@@ -0,0 +1,13 @@
<?php
if (!defined('_GNUBOARD_')) exit;
// 이 파일은 새 메일 템플릿 생성 시 기본으로 로드되는 헤더와 푸터 HTML을 정의합니다.
$base_mail_templates_php_path = __DIR__.'/base/mail_layout.php';
$mail_templates_php_path =__DIR__.'/'.$config['cf_theme'].'/mail_layout.php';
if(file_exists($mail_templates_php_path)){
include_once ($mail_templates_php_path);
}else {
include_once ($base_mail_templates_php_path);
}
?>