summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-12-11 01:36:32 +0500
committerilotterytea <iltsu@alright.party>2025-12-11 01:36:32 +0500
commitc0e9082e7d3d8fc3aa07cf707e524299764fb925 (patch)
treea6d01054f114843958ddf392755a9ed2bf52bfa9
parent63d9bc6496c3017142eb2cdf1e8834c5843702f4 (diff)
feat: enable emote reupload in instance configurationHEADmaster
-rw-r--r--system/config.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/system/config.php b/system/config.php
index 4a1a9da..4e852d7 100644
--- a/system/config.php
+++ b/system/config.php
@@ -150,6 +150,11 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
<?= CONFIG['emote']['urlupload'] ? 'checked' : '' ?>></td>
</tr>
<tr>
+ <th>Allow emote reupload</th>
+ <td><input type="checkbox" name="reupload_enable" value="on"
+ <?= CONFIG['reupload']['enable'] ? 'checked' : '' ?>></td>
+ </tr>
+ <tr>
<th>Default uploader name</th>
<td><input type="text" name="anonymous_defaultname"
value="<?= CONFIG['anonymous']['defaultname'] ?>"></td>