diff options
author | Jonas Kohl | 2024-10-19 12:37:23 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-10-19 12:37:23 +0200 |
commit | 5f946713ae499ee557361793b05543be29eb5026 (patch) | |
tree | 6fe0bea83bbe1f5aa70d1411c79ebc79d2843508 | |
parent | 3280df23b93d6bbffbd5dfd648e01242c31f8389 (diff) |
Fix label bug
-rw-r--r-- | src/application/templates/bootstrap-3/new_topic.twig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application/templates/bootstrap-3/new_topic.twig b/src/application/templates/bootstrap-3/new_topic.twig index 74be156..a1fea14 100644 --- a/src/application/templates/bootstrap-3/new_topic.twig +++ b/src/application/templates/bootstrap-3/new_topic.twig @@ -16,7 +16,7 @@ <form action="{{ g.server.REQUEST_URI }}" method="post" enctype="multipart/form-data"> <input type="hidden" name="form_id" value="{{ formId }}"> <div class="form-group"> - <label for="i_message">{{ __("Topic title:") }}</label> + <label for="i_title">{{ __("Topic title:") }}</label> <input type="text" class="form-control" id="i_title" name="title" value="{{ lastFormField(formId, "title") }}" required autofocus> </div> <div class="form-group"> |