Open the Crisp.dax file in DaxEdit. Go to the Album Page and then scroll down towards the end of the page until you find the following code:

<h3 class="topper">TRACK LISTING</h3>
<hr>
<div class="tracklist">
<!--[volume]-->
<!--[if(volumename)]-->
<div style="margin-bottom: 8px"><!--[volumename/]--> [<!--[volumetime/]-->]</div>
<!--[/if]-->
<!-- <table class="list"> --->
<table class="tracklisttable" cellpadding="0" cellspacing="0" border="0">
<!--[track]-->
<tr>
<td class="tracklisttd"><!--[tracknum/]-->.&amp;nbsp;</td>
<td class="tracklisttd"><!--[tracklink]--><!--[tracktitle/]--><!--[/tracklink]--> <!--[tracktime/]-->

<!--[if(trackartist)]-->
<br><i>(<!--[trackartist/]-->)</i>
<!--[/if]-->

<!--[if(trackcomposer)]-->
<br><i>(<!--[trackcomposer/]--><!--[if(trackauthor)]--> / <!--[trackauthor/]--><!--[/if]-->)</i>
<!--[else]-->
<!--[if(trackauthor)]-->
<br><i>(<!--[trackauthor/]-->)</i>
<!--[/if]-->
<!--[/if]-->

<!--[if(medialink)]-->
<br><!--[medialink]--><font color=$x2_color>play</font><!--[/medialink]-->
<!--[/if]-->
</td>
</tr>
<!--[/track]-->

Now within that code find this code:

<!--[trackauthor/]--><!--[/if]-->)</i>
<!--[else]-->
<!--[if(trackauthor)]-->
<br><i>(<!--[trackauthor/]-->)</i>

Change this:

<br><i>(<!--[trackauthor/]-->)</i>

To this:

<br><i><!--[trackauthor/]--></i>

That should do it.

Bob