Updated comment to explain newer repeat types

This commit is contained in:
Daniel James 2013-10-10 10:43:45 +01:00
parent 036df34f06
commit febadd08b9
1 changed files with 4 additions and 3 deletions

View File

@ -453,9 +453,10 @@ SQL;
} }
/** /**
* Get the repeat type of the show. Show can have repeat * Get the repeat type of the show. Show can have repeat type of
* type of "weekly", "bi-weekly" and "monthly". These values * "weekly", "every 2 weeks", "monthly", "monthly on the same weekday",
* are represented by 0, 1, and 2 respectively. * "every 3 weeks" and "every 4 weeks". These values are represented
* by 0, 1, 2, 3, 4 and 5, respectively.
* *
* @return int * @return int
* Return the integer corresponding to the repeat type. * Return the integer corresponding to the repeat type.