PHP Classes

Typo in iCalcreator.class.php:2390 $htis

Recommend this page to a friend!

      iCalCreator  >  All threads  >  Typo in iCalcreator.class.php:2390 $htis  >  (Un) Subscribe thread alerts  
Subject:Typo in iCalcreator.class.php:2390 $htis
Summary:$htis typo to $this in iCalcreator.class.php:2390
Messages:1
Author:McDuck
Date:2011-02-26 14:27:01
 

 


  1. Typo in iCalcreator.class.php:2390 $htis   Reply   Report abuse  
Picture of McDuck McDuck - 2011-02-26 14:27:01
In this file iCalcreator.class.php on line 2390:
if( !isset( $htis->dtstamp['value']['year'] ) &&

This should be $this instead of $htis, so it becomes:
if( !isset( $this->dtstamp['value']['year'] ) &&