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':