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

View File

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