git-svn-id: file:///home/shish/svn/shimmie2/branches/branch_2.2@1123 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish 2008-12-08 20:40:47 +00:00
parent 678b4067ba
commit 098e670a01

View File

@ -5,6 +5,13 @@
*/ */
class Event { class Event {
var $vetoed = false, $veto_reason = null; var $vetoed = false, $veto_reason = null;
var $vetoed = false;
var $veto_reason;
public function veto($reason="") {
$this->vetoed = true;
$this->veto_reason = $reason;
}
public function veto($reason="") { public function veto($reason="") {
$this->vetoed = true; $this->vetoed = true;