backport
git-svn-id: file:///home/shish/svn/shimmie2/branches/branch_2.2@1123 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
parent
678b4067ba
commit
098e670a01
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user