Emps-World Forum

Emps-World => Bug Reports => Resolved Bug Reports => Topic started by: Eliminator on May 06, 2015, 11:09:24 pm

Title: Proxy ticket bug
Post by: Eliminator on May 06, 2015, 11:09:24 pm
I was posting a ticket (proxy ticket) for a user and I had to go and set the field manually.

(http://i.imgur.com/tTnjQGs.png)

(http://i.imgur.com/BRsIPiX.png)
Title: Re: Proxy ticket bug
Post by: Thomy on May 07, 2015, 06:45:38 am
Probably an issue with the bright forest theme, it's working fine on the default one.
Title: Re: Proxy ticket bug
Post by: Eliminator on May 12, 2015, 07:56:23 pm
Thomy,

It only does not display it if you click post without a username in the username box. Try that and it might produce the issue!

Thanks!

Austen

(http://i.imgur.com/TmTaeHd.png)
Title: Re: Proxy ticket bug
Post by: Eliminator on May 12, 2015, 08:20:35 pm
I did further investigating here is the issue.

working

Code: [Select]
<div class="information shd_customfields" id="shd_customfields">
<div id="field_1_container">
<dl class="settings">
<dt id="field-1">

<strong>Username: </strong><br>
<span class="smalltext">Which account are you talking about?</span>
</dt>
<dd><input type="text" name="field-1" value="" class="input_text"></dd>
</dl>
<hr class="hrcolor">
</div>
</div>
            
            
working end


not working

Code: [Select]
<div class="information shd_customfields" id="shd_customfields">
<div id="field_1_container" style="display:none;">
<dl class="settings">
<dt id="field-1">

<strong>Username: </strong><br>
<span class="smalltext">Which account are you talking about?</span>
</dt>
<dd><input type="text" name="field-1" value="" class="input_text"></dd>
</dl>
<hr class="hrcolor">
</div>
</div>

Not working end


Fix -->
Code: [Select]
style="display:none;" needs to be removed