Difference between revisions of "User talk:Lisselli"
Jump to navigation
Jump to search
m
→See Also
imported>Lisselli m |
imported>Lisselli m (→See Also) |
||
Line 63: | Line 63: | ||
if afMonth == 0.0 | if afMonth == 0.0 | ||
return 31.0 | |||
elseif afMonth == 1.0 | elseif afMonth == 1.0 | ||
return 28.0 | |||
elseif afMonth == 2.0 | elseif afMonth == 2.0 | ||
return 31.0 | |||
elseif afMonth == 3.0 | elseif afMonth == 3.0 | ||
return 30.0 | |||
elseif afMonth == 4.0 | elseif afMonth == 4.0 | ||
return 31.0 | |||
elseif afMonth == 5.0 | elseif afMonth == 5.0 | ||
return 30.0 | |||
elseif afMonth == 6.0 | elseif afMonth == 6.0 | ||
return 31.0 | |||
elseif afMonth == 7.0 | elseif afMonth == 7.0 | ||
return 31.0 | |||
elseif afMonth == 8.0 | elseif afMonth == 8.0 | ||
return 30.0 | |||
elseif afMonth == 9.0 | elseif afMonth == 9.0 | ||
return 31.0 | |||
elseif afMonth == 10.0 | elseif afMonth == 10.0 | ||
return 30.0 | |||
elseif afMonth == 11.0 | elseif afMonth == 11.0 | ||
return 31.0 | |||
endif | endif | ||
EndFunction | EndFunction | ||
</source> | </source> |