If you are experiencing problems, try reloading so that your browser refreshes your cache. The .vim schemes are autogenerated, most have some errors.

Related Posts:
id date nick description
254131 27.9.09 22:45:35 Adrian Re: The poster was too lazy to write a description. (more secure)
252359 8.9.09 08:07:19   The poster was too lazy to write a description.
1
2
3
4
5
6
7
8
9
function getWeekdayName( $dayNo )
{
  $days = array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
  if(!is_numeric($dayNo) || $dayNo > 6 || $dayNo < 0)
  {  
    throw Excpetion( 'DayNo not defined' );
  }
  return $days[$dayNo];
}