diff --git a/webtools/tinderbox/addnote.cgi b/webtools/tinderbox/addnote.cgi index bbc0a2eb493..d79286e47da 100755 --- a/webtools/tinderbox/addnote.cgi +++ b/webtools/tinderbox/addnote.cgi @@ -54,7 +54,7 @@ if( $url = $form{"note"} ){ $note =~ s/\/>/gi; $enc_note = url_encode( $note ); - lock; + open( NOTES,">>$tree/notes.txt"); flock(NOTES, LOCK_EX); print NOTES "$buildtime|$buildname|$who|$now|$enc_note\n"; @@ -80,6 +80,11 @@ Go back to the Error Log
Go back to the build Page
"; + # Build tinderbox static pages + $ENV{QUERY_STRING}="tree=$tree&static=1"; + $ENV{REQUEST_METHOD}="GET"; + system './showbuilds.cgi >/dev/null'; + } else { &GetBuildNameIndex;