Tabs 1.7.2, how to prevent that all links in a <ul> are converted to tabs?

Tabs 1.7.2, how to prevent that all links in a <ul> are converted to tabs?


hi everyone!
hope your doing well. i currently have a small problem with the Tabs
widget.
if i have an unordered list (ul) within a tab, and inside a link (a),
then the first link is also changed into a tab link (eg href="#ui-
tabs-6")
how can i supress this behaviour?
thanks a lot in advance!
walter
ps:
<div id="tabs">
<div id="tabs-menu">
<ul>
<li><a href="#info-tab"><span class="info-tab">Info</span></
a></li>
<li><a href="#biography-tab"><span>Biography</span></a></li>
<li><a href="#comment-tab"><span>Comments</span></a></li>
</ul>
</div>
<div id="info-tab" class="ui-tabs-panel">
<div>
<ul><li><a href="bla">bla</a></li></ul> <! ------------ THIS
LINK IS ALSO CHANGED INTO A tab link -->
</div>
</div>
<div id="biography-tab" class="ui-tabs-panel">
</div>
<div id="comment-tab" class="ui-tabs-panel">
</div>
</div>