Skip to content
Snippets Groups Projects
Commit 83887b97 authored by Kevin Morris's avatar Kevin Morris
Browse files

Merge branch 'php_fix' into pu

parents 25937d95 889d358a
No related branches found
No related tags found
1 merge request!65Add missing ) for addvote.php
Pipeline #8210 passed
......@@ -69,7 +69,7 @@ if (has_credential(CRED_TU_ADD_VOTE)) {
if (!empty($_POST['addVote']) && empty($error)) {
// Convert $quorum to a String of maximum length "12.34" (5).
$quorum_str = substr(strval($quorum), min(5, strlen($quorum));
$quorum_str = substr(strval($quorum), min(5, strlen($quorum)));
add_tu_proposal($_POST['agenda'], $_POST['user'],
$len, $quorum_str, $uid);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment