Unclickable page bug in version 2.3.5.1

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
8/13/2010 3:06:47 PM
Gravatar
Total Posts 18439

Unclickable page bug in version 2.3.5.1

Hi All,

This afternoon I noticed that most of the user created pages on the demo site were unclickable. It turned out to be a bug, the checkbox for the new "Is Clickable" setting was defaulting to unchecked or false so new pages were being created as unclickable by default unless the user noticed the setting. Even worse, if using a skin that does not support the Is Clickable then it would still create new pages with it set to false but there was no visible option for the user to make the page clickable. The links would then be clickable in skins that don't use this property but if you changed to a skin that supports unclickable then they would all be unclickable because of this bad default value.

Fortunately it is a very easy thing to fix, you can fix it immediately by editing the Admin/PageSettings.aspx page with a text editor, look for this:

<asp:CheckBox ID="chkIsClickable" runat="server" CssClass="forminput" Checked="false"></asp:CheckBox>

and change the Checked property to true like this:

<asp:CheckBox ID="chkIsClickable" runat="server" CssClass="forminput" Checked="true"></asp:CheckBox>

I have corrected this and updated the 2.3.5.1 download packages so it is fixed for people who download it going forward, but if you are an early adopter and already upgraded or installed versions 2.3.5.1 you should make this change yourself.

Best,

Joe

8/13/2010 5:01:51 PM
Gravatar
Total Posts 2239

Re: Unclickable page bug in version 2.3.5.1

lol, not often you report a bug to yourself. Thanks for finding this one and fixing it so quickly, Joe!

Later,
Joe D.

You must sign in to post in the forums. This thread is closed to new posts.