Merge pull request #6475 from tobiasd/20190120-unescapealbums

HTML unescape existing albums
This commit is contained in:
Michael Vogel 2019-01-20 18:58:46 +01:00 committed by GitHub
commit ad7b85e0ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
<div id="photos-upload-exist-wrapper"> <div id="photos-upload-exist-wrapper">
<div id="photos-upload-existing-album-text">{{$existalbumtext}}</div> <div id="photos-upload-existing-album-text">{{$existalbumtext}}</div>
<select id="photos-upload-album-select" name="album" size="4"> <select id="photos-upload-album-select" name="album" size="4">
{{$albumselect}} {{$albumselect nofilter}}
</select> </select>
</div> </div>
<div id="photos-upload-exist-end"></div> <div id="photos-upload-exist-end"></div>

View File

@ -9,7 +9,7 @@
<label id="photos-upload-text" for="photos-upload-newalbum" >{{$newalbum}}</label> <label id="photos-upload-text" for="photos-upload-newalbum" >{{$newalbum}}</label>
<input id="photos-upload-album-select" class="form-control" placeholder="{{$existalbumtext}}" list="dl-photo-upload" type="text" name="album" size="4"> <input id="photos-upload-album-select" class="form-control" placeholder="{{$existalbumtext}}" list="dl-photo-upload" type="text" name="album" size="4">
<datalist id="dl-photo-upload">{{$albumselect}}</datalist> <datalist id="dl-photo-upload">{{$albumselect nofilter}}</datalist>
</div> </div>
<div id="photos-upload-end" class="clearfix"></div> <div id="photos-upload-end" class="clearfix"></div>