Welcome to Emps-World!

Register now to gain access to all of our forum features. Once registered and logged in, you will be able to create topics, post replies, send private messages, manage your profile, chat with other players in the shoutbox and much more. Once you sign in, this message will disappear.



Pages: 1
0 Members and 1 Guest are viewing this topic.

Offline Eliminator

  • *
  • 343
  • Liked: 123 times
Proxy ticket bug
« 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.



The salvation of the state is watchfulness in the citizen

Online Thomy

  • *
  • 3586
  • Liked: 3371 times
Re: Proxy ticket bug
« Reply #1 on: May 07, 2015, 06:45:38 am »
Probably an issue with the bright forest theme, it's working fine on the default one.

Offline Eliminator

  • *
  • 343
  • Liked: 123 times
Re: Proxy ticket bug
« Reply #2 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

The salvation of the state is watchfulness in the citizen

Offline Eliminator

  • *
  • 343
  • Liked: 123 times
Re: Proxy ticket bug
« Reply #3 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
The salvation of the state is watchfulness in the citizen
Pages: 1