Quote:
Originally Posted by jlew24asu
do you know of a reason why I still can not get this to work? a blank page loads when I try to create a tournament
|
Find in competitions.php
Code:
$days = cal_days_in_month(CAL_GREGORIAN, $month, $year);
Replace with
Code:
//$days = cal_days_in_month(CAL_GREGORIAN, $month, $year);
Find in competitions.php
Code:
if ($day > $days OR $day == 0) {
Replace with
Code:
if (/*$day > $days OR */$day == 0) {