Quote:
Originally Posted by yoyoyoyo
For further 101-ing, I found out TRUE the source of the error:
Code:
Profile Field Type: Single-Selection Radio Buttons
Title: Turn "Panic Button" on?
Description: The Panic Button is an icon that resides in a fixed place of your choosing on your screen on your screen. Clicking the icon immediately sends you to another URL of your choice.
Options: Yes (carriage-return)
No
and
Code:
<if condition="$bbuserinfo[field12] == yes">
which should really be:
Code:
<if condition="$bbuserinfo[field12] == Yes">
(note the small/capital "y"?)
|
I'll make a note of that in the file and reload.
Done.