0bf0e53f29ce — Ted Unangst 15 days ago
remove the old omitimages option
3 files changed, 0 insertions(+), 4 deletions(-)

M views/account.html
M views/honk.html
M web.go
M views/account.html +0 -2
@@ 10,8 10,6 @@ 
 <p><textarea name="whatabout">{{ .WhatAbout }}</textarea>
 <p><label class="button" for="skinny">skinny layout:</label>
 <input tabindex=1 type="checkbox" id="skinny" name="skinny" value="skinny" {{ if .User.Options.SkinnyCSS }}checked{{ end }}><span></span>
-<p><label class="button" for="omitimages">omit images:</label>
-<input tabindex=1 type="checkbox" id="omitimages" name="omitimages" value="omitimages" {{ if .User.Options.OmitImages }}checked{{ end }}><span></span>
 <p><label class="button" for="mentionall">mention all:</label>
 <input tabindex=1 type="checkbox" id="mentionall" name="mentionall" value="mentionall" {{ if .User.Options.MentionAll }}checked{{ end }}><span></span>
 <p><label class="button" for="inlineqts">inline quotes:</label>

          
M views/honk.html +0 -1
@@ 2,7 2,6 @@ 
 {{ $bonkcsrf := .BonkCSRF }}
 {{ $IsPreview := .IsPreview }}
 {{ $maplink := .MapLink }}
-{{ $omitimages := .OmitImages }}
 {{ with .Honk }}
 <header>
 {{ if $bonkcsrf }}

          
M web.go +0 -1
@@ 1585,7 1585,6 @@ func saveuser(w http.ResponseWriter, r *
 
 	options := user.Options
 	options.SkinnyCSS = r.FormValue("skinny") == "skinny"
-	options.OmitImages = r.FormValue("omitimages") == "omitimages"
 	options.MentionAll = r.FormValue("mentionall") == "mentionall"
 	options.InlineQuotes = r.FormValue("inlineqts") == "inlineqts"
 	options.MapLink = r.FormValue("maps")