* Move stuff around again

* Make answers save
This commit is contained in:
Zach Copley
2011-03-21 16:51:38 -07:00
parent 73c3344cc3
commit b0ed4cb89a
10 changed files with 511 additions and 40 deletions

View File

@@ -150,7 +150,7 @@ class Qnavote extends Action
$this->element('title', null, _m('Answers'));
$this->elementEnd('head');
$this->elementStart('body');
$form = new Answer($this->question, $this);
$form = new QnA_Answer($this->question, $this);
$form->show();
$this->elementEnd('body');
$this->elementEnd('html');
@@ -170,7 +170,7 @@ class Qnavote extends Action
$this->element('p', 'error', $this->error);
}
$form = new AnswerForm($this->question, $this);
$form = new QnaanswerForm($this->question, $this);
$form->show();