Skip to content

Commit

Permalink
Fixing SS_HTTPReqest typo bug in Calendar
Browse files Browse the repository at this point in the history
The `Calendar` `month` function parameter has a typo that causes calling this function to break in SilverStripe 3.2+ .
  • Loading branch information
3Dgoo committed Mar 23, 2016
1 parent c1b5a84 commit ae1dba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/Calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ public function weekend(SS_HTTPRequest $r) {
}


public function month(SS_HTTPReqest $r) {
public function month(SS_HTTPRequest $r) {
$this->setMonthView();
return $this->respond();
}
Expand Down

0 comments on commit ae1dba7

Please sign in to comment.