Alexander Nicolaysen Sørnes : version_queue: Allow to undo becoming maintainer or monitor

Chris Morgan cmorgan at winehq.org
Sun Dec 30 13:40:20 CST 2007


Module: appdb
Branch: master
Commit: 274f256a63d80d4c122a6811f49602386788f3e9
URL:    http://source.winehq.org/git/appdb.git/?a=commit;h=274f256a63d80d4c122a6811f49602386788f3e9

Author: Alexander Nicolaysen Sørnes <alex at thehandofagony.com>
Date:   Sun Dec 30 16:14:42 2007 +0100

version_queue: Allow to undo becoming maintainer or monitor

---

 include/version_queue.php |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/include/version_queue.php b/include/version_queue.php
index 77ddac7..7ed7d34 100644
--- a/include/version_queue.php
+++ b/include/version_queue.php
@@ -149,7 +149,7 @@ class version_queue
         if(!$this->oVersion->iVersionId && $this->oVersion->iAppId &&
            !$_SESSION['current']->isSuperMaintainer($this->oVersion->iAppId))
         {
-            echo html_frame_start("Become Maintainer or Monitor Changes", "90%");
+            echo html_frame_start("Become a Maintainer or Monitor Changes", "90%");
             echo "<div style='padding:5px;' class='color0'>\n";
             $oTable = new Table();
             if($this->oVersion->iMaintainerRequest == MAINTAINER_REQUEST)
@@ -173,6 +173,12 @@ class version_queue
                                      "name=\"iMaintainerRequest\" value=\"".MONITOR_REQUEST."\" /> ".
                                      "Monitor changes to this version, also after it has been accepted");
             $oTable->AddRow($oTableRow);
+            $oTableRow = new TableRow();
+            $oTableRow->AddTextCell('&nbsp;');
+            $oTableRow->AddTextCell('<input type="radio" name="iMaintainerRequest" value="0" /> '.
+                                    'None of the above');
+            $oTable->AddRow($oTableRow);
+
             echo $oTable->GetString();
             echo "</div\n";
             echo html_frame_end();




More information about the wine-cvs mailing list