Fixed typo in

static $allowed_actions = array(
		'delete',
		'CommentsForm',
		'doPostCommentz'
	);

to

static $allowed_actions = array(
		'delete',
		'CommentsForm',
		'doPostComment'
	);
This commit is contained in:
Lamin Barrow 2011-02-05 14:48:48 -08:00
parent 50ab8997e8
commit 56109bb860
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class CommentingController extends Controller {
static $allowed_actions = array(
'delete',
'CommentsForm',
'doPostCommentz'
'doPostComment'
);
private $baseClass = "";