Gossamer Forum
Home : Products : Others : Gossamer Community :

user management bug in ie6

Quote Reply
user management bug in ie6
When I go to my user management page in community, everything below (Require Email Validation) is not viewable. I know the problem is that the javascript has "--!>" instead of "-->".

I can't seem to find what template this is in:
Code:

<script language="javascript">
<!--
// This variable holds the verb used by the prompter to ask the
// use if they wish to commit to the deletion or validation of a user.
var bulk_submission_mode = 'remove';
//--!>
</script>


What template is this located in. I have fixed this before, but I can't remember how for the life of me.

Thanks,

- Jonathan
Quote Reply
Re: [jdgamble] user management bug in ie6 In reply to
Duhhh! admin_user.html

So if you have this problem in your admin where the rest of the page is hidden in Internet Explorer, change the above code to this:

Code:

<script language="javascript">
<!--//
// This variable holds the verb used by the prompter to ask the
// use if they wish to commit to the deletion or validation of a user.
var bulk_submission_mode = 'remove';
//-->
</script>


Hope this helps someone,

- Jonathan
Quote Reply
Re: [jdgamble] user management bug in ie6 In reply to
Thanks, it will be fixed in the next version of Community.

Adrian
Quote Reply
Thanx In reply to
Hi jdgamble. Thanx for the quick and painless fix to this minor bug. Smile