Skip to content

Commit

Permalink
Fixed typo in
Browse files Browse the repository at this point in the history
static $allowed_actions = array(
		'delete',
		'CommentsForm',
		'doPostCommentz'
	);

to

static $allowed_actions = array(
		'delete',
		'CommentsForm',
		'doPostComment'
	);
  • Loading branch information
laminbarrow committed Feb 5, 2011
1 parent 50ab899 commit 56109bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/controllers/CommentingController.php
Expand Up @@ -9,7 +9,7 @@ class CommentingController extends Controller {
static $allowed_actions = array(
'delete',
'CommentsForm',
'doPostCommentz'
'doPostComment'
);

private $baseClass = "";
Expand Down

0 comments on commit 56109bb

Please sign in to comment.