From f304e172fc91227074fd8de6e07f54a3b3e1de64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Fri, 21 Jul 2023 14:40:30 +0900 Subject: [PATCH] servermgrv2 init... --- app/Config/Constants.php | 1 + app/Helpers/Admin/Board_helper.php | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 5bd5c74..8396840 100644 --- a/app/Config/Constants.php +++ b/app/Config/Constants.php @@ -180,6 +180,7 @@ foreach (PATHS as $key => $path) { //아이콘 및 Sound관련 define('ICONS', [ 'NEW' => '', + 'REPLY' => '', 'DELETE' => '', 'RELOAD' => '', 'SETTING' => '', diff --git a/app/Helpers/Admin/Board_helper.php b/app/Helpers/Admin/Board_helper.php index d1c2276..0d1ff6d 100644 --- a/app/Helpers/Admin/Board_helper.php +++ b/app/Helpers/Admin/Board_helper.php @@ -66,9 +66,10 @@ function getFieldIndex_Row_BoardHelper($field, array $row, array $fieldFilters, switch ($field) { case 'title': return sprintf( - '
%s
', + '
%s  %s
', $row['grpdepth'] * 30, - anchor(current_url() . '/reply/' . $row['uid'], $row[$field], ["target" => "_self"]) + anchor(current_url() . '/view/' . $row['uid'], $row[$field], ["target" => "_self"]), + anchor(current_url() . '/reply/' . $row['uid'], ICONS['REPLY'], ["target" => "_self"]) ); break; case 'updated_at':