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
  • +0/-0
  • Everybody believes they are the good guy.
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.





- Drugs are bad, mmkay -

"The hate of men will pass, and dictators die, and the power they took from the people will return to the people." - Charlie Chaplin

"Nothing inspires forgiveness quite like revenge." - Scott Adams

Online Thomy

  • *
  • 3576
  • Liked: 3357 times
  • +5/-0
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
  • +0/-0
  • Everybody believes they are the good guy.
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



- Drugs are bad, mmkay -

"The hate of men will pass, and dictators die, and the power they took from the people will return to the people." - Charlie Chaplin

"Nothing inspires forgiveness quite like revenge." - Scott Adams

Offline Eliminator

  • *
  • 343
  • Liked: 123 times
  • +0/-0
  • Everybody believes they are the good guy.
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


- Drugs are bad, mmkay -

"The hate of men will pass, and dictators die, and the power they took from the people will return to the people." - Charlie Chaplin

"Nothing inspires forgiveness quite like revenge." - Scott Adams
Pages: 1