you want to open the postings that are warned from within the warning log and not the thread, in which the warned posting is?
Code:
look in template warn_log_row for:
<td style="white-space:nowrap;"><if condition="$Log[w_post] > 0"><a href="showthread.php?$session[sessionurl]p=$Log[w_post]">$vbphrase[review_post]</a><else />N/A</if></td>
replace it with:
<td style="white-space:nowrap;"><if condition="$Log[w_post] > 0"><a href="showthread.php?$session[sessionurl]p=$Log[w_post]#post$Log[w_post]" target="new">$vbphrase[review_post]</a><else />N/A</if></td>
if you wanna have it openend in a new window showing the posting in the thread it was done.
replace it with:
<td style="white-space:nowrap;"><if condition="$Log[w_post] > 0"><a href="showpost.php?$session[sessionurl]p=$Log[w_post]" target="new">$vbphrase[review_post]</a><else />N/A</if></td>
if you wanna have it openend in a new window showing only the posting.
remove target="new" if you want to open in the same window as the warning logs.