Prepopulate newnotice from URL arg

This commit is contained in:
Chimo 2015-02-09 18:06:26 -05:00
parent 3e0f395be6
commit d816af9aa9
1 changed files with 4 additions and 0 deletions

View File

@ -73,6 +73,10 @@ class NewnoticeAction extends FormAction
$this->formOpts[$opt] = $this->trimmed($opt);
}
}
if ($this->trimmed('content')) {
$this->formOpts['content'] = $this->trimmed('content');
}
}
/**