diff options
Diffstat (limited to 'src/team')
| -rw-r--r-- | src/team/run.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/team/run.php b/src/team/run.php index 6313c2f..b14d387 100644 --- a/src/team/run.php +++ b/src/team/run.php @@ -232,7 +232,11 @@ if($redo) { $strtmp .= " <td>Not answered yet"; } else { - $strtmp .= " <td>" . $run[$i]["answer"]; + $strtmp .= " <td>" . $run[$i]["answer"]; + if(false) { + if(strpos($run[$i]["autoanswer"],"OKs") > 0) + $strtmp .= ' ' . substr($run[$i]["autoanswer"],strrpos($run[$i]["autoanswer"],'(')); + } if($run[$i]['yes']=='t') { $strtmp .= " <img alt=\"".$run[$i]["colorname"]."\" width=\"15\" ". "src=\"" . balloonurl($run[$i]["color"]) ."\" />"; |