Quote:
Originally Posted by bananalive
Open template:
Code:
<tbody>
<tr>
<td class="thead" colspan="2">
<if condition="$shared"><div style="float: right; width: auto;">$vbphrase[shared_reply]</div></if>
<a name="$cr[id]" id="$cr[id]"></a>
$cr[title]
</td>
</tr>
<tr>
<td class="alt2 smallfont" colspan="2">
$cr[reply]
<if condition="$cr[userid] == $vbulletin->userinfo[userid]"><div style="text-align: right;">
<a href="cannedreplies.php?do=edit&id=$cr[id]">$vbphrase[edit]</a>
<a href="javascript:delCR('$cr[id]', '$cr[title2]');">$vbphrase[delete]</a></div></if>
</td>
</tr>
</tbody>
Replace All:
Code:
<tbody>
<tr>
<td class="thead" colspan="2">
<if condition="$shared"><div style="float: right; width: auto;">$vbphrase[shared_reply]</div></if>
<a name="$cr[id]" id="$cr[id]"></a>
$cr[title]
</td>
</tr>
<tr>
<td class="alt2 smallfont" colspan="2">
$cr[reply]
<div style="text-align: right;">
<a href="cannedreplies.php?do=edit&id=$cr[id]">$vbphrase[edit]</a>
<a href="javascript:delCR('$cr[id]', '$cr[title2]');">$vbphrase[delete]</a></div>
</td>
</tr>
</tbody>
|
Ok that does the trick, thanks.
What was wrong with the current template as I seemed to be the only one with this problem??