mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-25 06:54:29 +02:00
Remove unneeded enctype="multipart/form-data"
This commit is contained in:
parent
6eda38603c
commit
6e793390c6
@ -5,7 +5,7 @@
|
||||
<tr>
|
||||
<td>
|
||||
Here you can change description of your guild.<br/>
|
||||
<form enctype="multipart/form-data" action="{{ getLink('guilds') }}?guild={{ guild.getName() }}&action=change_description" method="post">
|
||||
<form action="{{ getLink('guilds') }}?guild={{ guild.getName() }}&action=change_description" method="post">
|
||||
{{ csrf() }}
|
||||
<input type="hidden" name="todo" value="save"/>
|
||||
<textarea name="description" cols="60" rows="{{ setting('core.guild_description_lines_limit') - 1 }}">{{ guild.getCustomField('description')|raw }}</textarea><br>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<tr>
|
||||
<td>
|
||||
Here you can change MOTD (Message of the Day, showed in game!) of your guild.<br/>
|
||||
<form enctype="multipart/form-data" action="{{ getLink('guilds') }}?guild={{ guild.getName() }}&action=change_motd" method="post">
|
||||
<form action="{{ getLink('guilds') }}?guild={{ guild.getName() }}&action=change_motd" method="post">
|
||||
{{ csrf() }}
|
||||
<input type="hidden" name="todo" value="save"/>
|
||||
<textarea name="motd" cols="60" rows="3">{{ guild.getCustomField('motd')|raw }}</textarea><br/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user