Change the maintainer button from 'be a maintainer for this app' to 'be a

maintainer for this version', and change 'monitor version' to 'monitor
changes'. Add a 'title' entry to the <input> to provide mouseover help to the user.
This commit is contained in:
Alexander Nicolaysen Sørnes
2006-12-02 05:05:54 +00:00
committed by WineHQ
parent 79582b050a
commit 83e83e504f

View File

@@ -721,7 +721,7 @@ class Version {
} else /* nope */ } else /* nope */
{ {
echo '<form method="post" name="sMessage" action="maintainersubmit.php">'; echo '<form method="post" name="sMessage" action="maintainersubmit.php">';
echo '<input type="submit" value="Be a maintainer for this app" class="button" title="Click here to know more about maintainers.">'; echo '<input type="submit" value="Be a Maintainer for This Version" class="button" title="Click here to know more about maintainers.">';
echo "<input type=hidden name=\"iAppId\" value=\"".$oApp->iAppId."\">"; echo "<input type=hidden name=\"iAppId\" value=\"".$oApp->iAppId."\">";
echo "<input type=hidden name=\"iVersionId\" value=\"".$this->iVersionId."\">"; echo "<input type=hidden name=\"iVersionId\" value=\"".$this->iVersionId."\">";
echo "</form>"; echo "</form>";
@@ -732,7 +732,7 @@ class Version {
{ {
echo '<form method=post name=sMessage action=appview.php?iVersionId='.$this->iVersionId.'&iAppId='.$oApp->iAppId.'>'; echo '<form method=post name=sMessage action=appview.php?iVersionId='.$this->iVersionId.'&iAppId='.$oApp->iAppId.'>';
echo '<input type=hidden name="sSub" value="StartMonitoring" />'; echo '<input type=hidden name="sSub" value="StartMonitoring" />';
echo '<input type=submit value="Monitor Version" class="button" />'; echo '<input type=submit value="Monitor Changes" class="button" />';
echo "</form>"; echo "</form>";
} }
} }