Plugin Directory

Changeset 748152


Ignore:
Timestamp:
07/30/2013 05:24:30 AM (13 years ago)
Author:
k2eric
Message:

Update to 3.1.1

Location:
tubepress/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tubepress/trunk/readme.txt

    r748039 r748152  
    33Donate link: http://tubepress.org
    44Tags: video, youtube, gallery, videos, vimeo
    5 Requires at least: 3.0
     5Requires at least: 2.2
    66Stable tag: trunk
    77
     
    3131
    3232== Changelog ==
     33= 3.1.1 =
     34**PHP 5.2 or higher is required for this version of TubePress!**
     35
     36* Bug Fixes
     37    * Fixed bug with PHP 5.2.x: unexpected T_PAAMAYIM_NEKUDOTAYIM
    3338= 3.1.0 =
    34 **PHP 5.2 or higher is required for this version of TubePress!**
    35 
    3639* New Features
    3740    * Major speed boost (up to 4x faster) via optional boot cache
  • tubepress/trunk/tubepress.php

    r747997 r748152  
    55Description: Displays gorgeous YouTube and Vimeo galleries in your posts, pages, and/or sidebar. Upgrade to <a href="http://tubepress.org/pro/">TubePress Pro</a> for more features!
    66Author: Eric D. Hough
    7 Version: 3.1.0
     7Version: 3.1.1
    88Author URI: http://ehough.com
    99
  • tubepress/trunk/vendor/ehough/tickertape/src/main/php/ehough/tickertape/ContainerAwareEventDispatcher.php

    r747997 r748152  
    140140    public function addSubscriberService($serviceId, $class)
    141141    {
    142         foreach ($class::getSubscribedEvents() as $eventName => $params) {
     142        $ref      = new ReflectionClass($class);
     143        $instance = $ref->newInstance();
     144
     145        foreach ($instance->getSubscribedEvents() as $eventName => $params) {
    143146            if (is_string($params)) {
    144147                $this->listenerIds[$eventName][] = array($serviceId, $params, 0);
Note: See TracChangeset for help on using the changeset viewer.