Excellent addon (with the delete button). Thanks! Try this code and let me know what you think.
PHP Code:
// Administrator To Administrator Notes Hack
doformheader("","");
$notes = $DB_site->query_first("SELECT notes,userid,timestamp,username FROM adminnotes LIMIT 1");
$bbcodeon=iif($forum[allowbbcode],$ontext,$offtext);
$imgcodeon=iif($forum[allowimages],$ontext,$offtext);
$htmlcodeon=iif($forum[allowhtml],$ontext,$offtext);
$smilieson=iif($forum[allowsmilies],$ontext,$offtext);
$note = stripslashes($notes['notes']);
$timestamp = $notes['timestamp'];
$userid = $notes['userid'];
$author = $notes['username'];
$date_posted = vbdate('l, F jS, Y',$timestamp);
$time_posted = vbdate('g:i a',$timestamp);
maketableheader('Administrator To Administrator Notes');
echo "<tr class='".getrowbg()."' valign='top'>\n<td><font size=1><p>". makelinkcode("Leave A Note","./anotes.php","0") ."";
if ( $note != "" ) {
echo "". makelinkcode("Delete","./anotes.php?action=delete","0") ."";
}
echo "</p></font></td>\n<td><p></p></td>\n</tr>\n";
if ( $note != "" ) {
makelabelcode($note);
makelabelcode("Author: <a href='$bburl/member.php?s=&action=userinfo&userid=$userid'>$author</a> | Posted: $date_posted at $time_posted");
}
echo "</table></td></tr></table></form>\n";
// End of Administrator To Administrator Notes Hack