Templates: relative links instead of absolute ones for /static directory
…irector Two links were absolute ("/static/...") instead of relative ("../static"). The image was not loaded with sites behind reverse proxies and subdirectory.pull/1086/head
parent
429651874f
commit
526610e2e7
|
@ -233,7 +233,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="reconnecting">
|
<div class="reconnecting">
|
||||||
<h1>Reestablishing connection...</h1>
|
<h1>Reestablishing connection...</h1>
|
||||||
<p><img alt="" border="0" src="/static/img/connectingbar.gif" /></p>
|
<p><img alt="" border="0" src="../static/img/connectingbar.gif" /></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="userdup">
|
<div class="userdup">
|
||||||
<h1>Opened in another window.</h1>
|
<h1>Opened in another window.</h1>
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="reconnecting">
|
<div class="reconnecting">
|
||||||
<h1>Reestablishing connection...</h1>
|
<h1>Reestablishing connection...</h1>
|
||||||
<p><img alt="" border="0" src="/static/img/connectingbar.gif" /></p>
|
<p><img alt="" border="0" src="../../static/img/connectingbar.gif" /></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="userdup">
|
<div class="userdup">
|
||||||
<h1>Opened in another window.</h1>
|
<h1>Opened in another window.</h1>
|
||||||
|
|
Loading…
Reference in New Issue