I have found a bug in the editing of jokes. Editing the username of the submitter doesn't stick. I looked at the source code and in the do_edit_joke function, there is no code to process the submitter from the form. I'm fixing it in mine as follows:
Find:
Code:
$jokeimage = $_POST['jokeimage'];
Add After:
Code:
$submitter = $_POST['username'];
Find:
Code:
jokeimage='" . addslashes("$jokeimage") . "',
Add After:
Code:
username='" . addslashes("$submitter") . "',
Amy