Changeset - 3dfe049ec965
[Not reviewed]
stable
0 1 0
Mads Kiilerich (mads) - 6 years ago 2020-05-22 15:21:57
mads@kiilerich.com
gists: fix bad template reference to safe_str (Issue #376)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/gists/edit.html
Show inline comments
 
@@ -73,7 +73,7 @@
 
                    </div>
 
                    <div class="panel-body no-padding">
 
                        <div id="editor_container">
 
                            <textarea id="editor_${h.FID('f',file.path)}" name="contents" style="display:none">${safe_str(file.content)}</textarea>
 
                            <textarea id="editor_${h.FID('f',file.path)}" name="contents" style="display:none">${h.safe_str(file.content)}</textarea>
 
                        </div>
 
                    </div>
 
                </div>
0 comments (0 inline, 0 general)