fixed broken comment function: Change button had no name
authorRoland Hieber <devnull@localhost>
Fri, 23 Oct 2009 00:21:52 +0000 (02:21 +0200)
committerRoland Hieber <devnull@localhost>
Fri, 23 Oct 2009 00:21:52 +0000 (02:21 +0200)
src/detail.php

index 6561b8f..b091f8f 100644 (file)
@@ -65,7 +65,8 @@ $er = $doc->getErrorReportByID($getUid);
 $strOldComment = $er->getComment();
 
 // Probably we have to update an error report
-if($getAction == "update" and $postSubmit == _c("Change"))
+echo "PostSubmit: $postSubmit";
+if($getAction == "update" and $postSubmit == _("Change"))
 {
   if($cfgErrors->userIsAdmin()) {
     $postComment = stripslashes(@$_POST["comment"]);
@@ -124,8 +125,8 @@ if($cfgErrors->userIsAdmin()) {
       "Comment written by:"), erGetRealUserName($er->getCommentOwner()));
   }
 }
-echo sprintf("<tr><td /><td><{$GLOBALS["smlbtn"]} value='%s' /></td></tr>\n",
-  _("Change"));
+echo sprintf("<tr><td /><td><{$GLOBALS["smlbtn"]} name='submit' value='%s' ".
+  "/></td></tr>\n", _("Change"));
 echo "</table></form><p />\n";
 _PageBlue();
 ?>
This page took 0.028083 seconds and 4 git commands to generate.