error: no commit comment specified !

"; echo "press the Back button and enter a commit comment."; } else if ($file != "") { // read file contents $hfile = fopen( $file, "w"); // write data fputs( $hfile, "CATEGORY: ".$_POST[ "category"]."\r\n"); fputs( $hfile, "TITLE: ".stripslashes( trim( $_POST[ "title"]))."\r\n"); fputs( $hfile, "PRIO: ".$_POST[ "prio"]."\r\n"); fputs( $hfile, "STATUS: ".$_POST[ "status"]."\r\n"); fputs( $hfile, "FILES: ".stripslashes( trim( $_POST[ "filelist"]))."\r\n"); fputs( $hfile, "UPDATED: ".trim( $_POST[ "updated"])."\r\n"); fputs( $hfile, "\r\n"); fputs( $hfile, stripslashes( $_POST[ "details"])); fclose( $hfile); // write comment to comment file $hfile = fopen( filedb_getcommitfile( $file), "w"); fputs( $hfile, stripslashes( stripslashes( $comment))); fclose( $hfile); // update echo "Data was saved successfully !

"; // autoload details window again echo ""; // refresh list window echo ""; } else { echo "Internal error: could not save data !
"; } ?>