From: Mutwin K. <mu...@us...> - 2004-10-16 15:55:41
|
Update of /cvsroot/fuwiki/fuwiki_1_0/elements In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5020/elements Modified Files: comment_box.inc discuss_link.inc Log Message: many bugfixes on the long road to fuwiki 1.0 Index: comment_box.inc =================================================================== RCS file: /cvsroot/fuwiki/fuwiki_1_0/elements/comment_box.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** comment_box.inc 15 Oct 2004 11:49:05 -0000 1.2 --- comment_box.inc 16 Oct 2004 15:55:32 -0000 1.3 *************** *** 31,35 **** $out = "<br />\n"; $out .= "\n<div><form action=\"index.php?".rawurldecode(utf8_decode(_PAGENAME))."\" method=\"post\" enctype=\"multipart/form-data\">\n"; ! $out .= "<p><b>". _COMBOXCOMMENT ."</b>"."<br />\n"; $out .= "<textarea name=\"comment\" rows=\"10\" cols=\"50\" style=\"width: 100%;\" accesskey=\"c\"></textarea><br />\n"; $out .= "<input type=\"submit\" name=\"commented\" value=\"". _COMBOXSUBMIT ."\" accesskey=\"s\" />\n"; --- 31,35 ---- $out = "<br />\n"; $out .= "\n<div><form action=\"index.php?".rawurldecode(utf8_decode(_PAGENAME))."\" method=\"post\" enctype=\"multipart/form-data\">\n"; ! $out .= "<p><h2>". _COMBOXCOMMENT ."</h2>"."<br />\n"; $out .= "<textarea name=\"comment\" rows=\"10\" cols=\"50\" style=\"width: 100%;\" accesskey=\"c\"></textarea><br />\n"; $out .= "<input type=\"submit\" name=\"commented\" value=\"". _COMBOXSUBMIT ."\" accesskey=\"s\" />\n"; Index: discuss_link.inc =================================================================== RCS file: /cvsroot/fuwiki/fuwiki_1_0/elements/discuss_link.inc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** discuss_link.inc 13 Oct 2004 20:28:28 -0000 1.1.1.1 --- discuss_link.inc 16 Oct 2004 15:55:32 -0000 1.2 *************** *** 29,33 **** return "\n<a href=\"index.php?".utf8_decode(_PAGENAME).":Discuss\">"._DISCUSS."</a>\n"; else ! return "\n<a href=\"index.php?".utf8_decode(_PAGENAME).":Discuss&edit=1\">"._START_DISCUSSION."</a>\n"; }else{ return ""; --- 29,33 ---- return "\n<a href=\"index.php?".utf8_decode(_PAGENAME).":Discuss\">"._DISCUSS."</a>\n"; else ! return "\n<a href=\"index.php?".utf8_decode(_PAGENAME).":Discuss\">"._START_DISCUSSION."</a>\n"; }else{ return ""; |