5
If you set a link in a custom block using the
text type code and set the block type to "Auto Format" then the link will open in a new window.
So far as I can tell, the
text code doesn't work in custom blocks; shame, as this would do what you want.
Therefore, you'll have to construct your block using HTML code (rather than BB/xoops code) for the link, i.e.:
textThe target="_top" bit will cause the page to open in the current window. Set the block type to "Auto Format" (with or without smilies makes no difference).
target"_self" should also work, but target="_blank" will cause the link to open in a new window.
HTH