summaryrefslogtreecommitdiff
path: root/motion.php
diff options
context:
space:
mode:
Diffstat (limited to 'motion.php')
-rw-r--r--motion.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/motion.php b/motion.php
index 4eba5b5..3559cd3 100644
--- a/motion.php
+++ b/motion.php
@@ -26,7 +26,7 @@
if (is_numeric($_REQUEST['motion'])) {
$stmt = $db->getStatement("update decision");
$stmt->bindParam(":id",$_POST['motion']);
- $stmt->bindParam(":proponent",$_POST['proponent']);
+ $stmt->bindParam(":proponent",$user['id']);
$stmt->bindParam(":title",$_POST['title']);
$stmt->bindParam(":content",$_POST['content']);
$stmt->bindParam(":quorum",$_POST['quorum']);
@@ -88,7 +88,7 @@ BODY;
}
} else {
$stmt = $db->getStatement("create decision");
- $stmt->bindParam(":proponent",$_POST['proponent']);
+ $stmt->bindParam(":proponent",$user['id']);
$stmt->bindParam(":title",$_POST['title']);
$stmt->bindParam(":content",$_POST['content']);
$stmt->bindParam(":quorum",$_POST['quorum']);
@@ -158,7 +158,6 @@ BODY;
foreach (array("title","content","quorum","majority") as $column) {
$motion[$column] = "";
}
- $motion["proponent"] = $user['id'];
$motion["proposer"] = $user['name'];
}
} else {
@@ -166,7 +165,6 @@ BODY;
foreach (array("title","content","quorum","majority") as $column) {
$motion[$column] = "";
}
- $motion["proponent"] = $user['id'];
$motion["proposer"] = $user['name'];
}
?>
@@ -179,7 +177,7 @@ BODY;
?>
<table>
<tr><td>ID:</td><td><?php echo htmlentities($motion['tag']); ?></td></tr>
- <tr><td>Proponent:</td><td><?php echo htmlentities($motion['proposer']); ?><input type="hidden" name="proponent" value="<?php echo htmlentities($user['id']); ?>"></td></tr>
+ <tr><td>Proponent:</td><td><?php echo htmlentities($motion['proposer']); ?></td></tr>
<tr><td>Proposed Date/Time:</td><td><?php echo htmlentities($motion['proposed'] ? $motion['proposed']." UTC" : '(auto filled to current date/time)'); ?></td></tr>
<tr><td>Title:</td><td><input name="title" value="<?php echo htmlentities($motion['title'])?>"></td></tr>
<tr><td>Text:</td><td><textarea name="content"><?php echo htmlspecialchars($motion['content'])?></textarea></td></tr>
@@ -200,6 +198,7 @@ BODY;
<option value="+3 days">In 3 Days</option>
<option value="+7 days">In 1 Week</option>
<option value="+14 days">In 2 Weeks</option>
+ <option value="+28 days">In 4 Weeks</option>
</select></td></tr>
<tr><td>&nbsp;</td><td><input type="submit" value="Propose" /></td></tr>
</table>