Added in class member variables, removed newline at end of file which can cause problems if you try to send headers after this file is included.

This commit is contained in:
paul 2006-09-01 08:25:46 +00:00
parent 11db21cc45
commit 8374bea772

View file

@ -1,6 +1,12 @@
<?php <?php
class uiCalendar class uiCalendar
{ {
var $Decade;
var $Year;
var $Month;
var $Week;
var $Day;
var $Hour;
function uiCalendar() function uiCalendar()
{ {
@ -102,7 +108,9 @@ class uiCalendar
function buildDay() function buildDay()
{ {
if (is_array($this->Day)) return; if (is_array($this->Day)) {
return;
}
require_once 'Calendar/Day.php'; require_once 'Calendar/Day.php';