diff --git a/app/Controllers/Feedback.php b/app/Controllers/Feedback.php index aca7950..b71f764 100644 --- a/app/Controllers/Feedback.php +++ b/app/Controllers/Feedback.php @@ -24,8 +24,8 @@ class Feedback extends BaseController if ($content === '') { return $this->response->setJSON(['ok' => false, 'message' => '의견 내용을 입력해 주세요.']); } - if (mb_strlen($content) > 1000) { - $content = mb_substr($content, 0, 1000); + if (mb_strlen($content) > 2000) { + $content = mb_substr($content, 0, 2000); } helper('admin'); diff --git a/app/Views/components/feedback_widget.php b/app/Views/components/feedback_widget.php index 4497b55..d593107 100644 --- a/app/Views/components/feedback_widget.php +++ b/app/Views/components/feedback_widget.php @@ -14,15 +14,17 @@ $apiPath = (string) parse_url(base_url('feedback'), PHP_URL_PATH); -