Subversion Repositories Applications.gtt

Rev

Rev 61 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61 Rev 66
Line 399... Line 399...
399
     */
399
     */
400
    function & getValidator()
400
    function & getValidator()
401
    {
401
    {
402
        if (!isset($this->validator)) {
402
        if (!isset($this->validator)) {
403
            require_once CALENDAR_ROOT.'Validator.php';
403
            require_once CALENDAR_ROOT.'Validator.php';
404
            $this->validator = & new Calendar_Validator($this);
404
            $this->validator = new Calendar_Validator($this);
405
        }
405
        }
406
        return $this->validator;
406
        return $this->validator;
407
    }
407
    }
Line 408... Line 408...
408
 
408