Plugin Directory

Changeset 1681120


Ignore:
Timestamp:
06/19/2017 12:37:44 PM (9 years ago)
Author:
wpicalavailability
Message:

Tweaked "Time exceeded notice"

Location:
wp-ical-availability
Files:
325 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-ical-availability/trunk/include/class.iCalReader.php

    r1623744 r1681120  
    674674    {
    675675        $array = $this->cal;
    676        
    677         if(array_key_exists('VFREEBUSY', $array))
    678             return $array['VFREEBUSY'];
    679         else
    680             return false;
     676
     677        if ( isset($array) && is_array($array) )
     678        {
     679            if( @array_key_exists('VFREEBUSY', $array) )
     680                return $array['VFREEBUSY'];
     681            else
     682                return false;
     683        }
     684        else
     685            return false;
    681686    }
    682687
  • wp-ical-availability/trunk/readme.txt

    r1677331 r1681120  
    44Requires at least: 3.0
    55Tested up to: 4.8
    6 Stable tag: 1.0
     6Stable tag: 1.0.1
    77
    88This calendar imports an iCal feed from an external website, like Airbnb, and shows the availability based on that feed.
     
    6767== Changelog ==
    6868
     69= 1.0.1 =
     70* Tweaked "Time exceeded notice"
     71
    6972= 1.0 =
    7073* Fixed URL encoding issue when trying to import a feed.
     
    98101== Upgrade Notice ==
    99102
     103= 1.0.1 =
     104* Tweaked "Time exceeded notice"
     105
    100106= 1.0 =
    101107* Fixed URL encoding issue when trying to import a feed.
  • wp-ical-availability/trunk/wp-ical-availability.php

    r1623744 r1681120  
    44 * Plugin URI:  http://www.wpicalavailability.com
    55 * Description: WP iCal Availability
    6  * Version:     1.0
     6 * Version:     1.0.1
    77 * Author:      WP iCal Availability
    88 * Author URI:  http://www.wpicalavailability.com
Note: See TracChangeset for help on using the changeset viewer.