diff --git a/core/event.class.php b/core/event.class.php index 2715d6d5..7e070bb4 100644 --- a/core/event.class.php +++ b/core/event.class.php @@ -5,6 +5,13 @@ */ class Event { 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="") { $this->vetoed = true;