862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
|
zTitle = fossil_strdup(pPost->zThreadTitle);
}
style_header("Edit %s", zTitle ? "Post" : "Reply");
@ <h1>Original Post:</h1>
forum_render(pPost->zThreadTitle, pPost->zMimetype, pPost->zWiki,
"forumEdit");
if( P("preview") ){
@ <h1>Preview Of Editted Post:</h1>
forum_render(zTitle, zMimetype, zContent,"forumEdit");
}
@ <h1>Revised Message:</h1>
@ <form action="%R/forume2" method="POST">
@ <input type="hidden" name="fpid" value="%h(P("fpid"))">
@ <input type="hidden" name="edit" value="1">
forum_from_line();
|
|
|
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
|
zTitle = fossil_strdup(pPost->zThreadTitle);
}
style_header("Edit %s", zTitle ? "Post" : "Reply");
@ <h1>Original Post:</h1>
forum_render(pPost->zThreadTitle, pPost->zMimetype, pPost->zWiki,
"forumEdit");
if( P("preview") ){
@ <h1>Preview of Edited Post:</h1>
forum_render(zTitle, zMimetype, zContent,"forumEdit");
}
@ <h1>Revised Message:</h1>
@ <form action="%R/forume2" method="POST">
@ <input type="hidden" name="fpid" value="%h(P("fpid"))">
@ <input type="hidden" name="edit" value="1">
forum_from_line();
|