070921 Sidebar Custom Hashtags

This commit is contained in:
daisuke
2021-09-07 19:07:04 -05:00
parent ddff7399ad
commit 7cdfd4e99e
8 changed files with 43 additions and 10 deletions

View File

@ -67,6 +67,7 @@
<input type='radio' name='reblog' id='reblogOff' value='off' style='display:none;' <?php echo ($user_settings['reblog'] == 'off' ? "checked" : ""); ?>>
<label for='reblogOff'>No</label>
</div>
<br><br>
<h2>Muted words</h2>
<span>One per line</span>
@ -77,6 +78,16 @@
}
?></textarea>
</div>
<h2>Followed hashtags</h2>
<span>One per line</span>
<div class='setting'>
<textarea name='fhtags' style='width:85%;'><?php
foreach($user_settings['fhtags'] as $word){
echo (empty($word) ? "" : trim($word)."\n");
}
?></textarea>
</div>
</fieldset>
<fieldset>