Changeset 748152
- Timestamp:
- 07/30/2013 05:24:30 AM (13 years ago)
- Location:
- tubepress/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
tubepress.php (modified) (1 diff)
-
vendor/ehough/tickertape/src/main/php/ehough/tickertape/ContainerAwareEventDispatcher.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tubepress/trunk/readme.txt
r748039 r748152 3 3 Donate link: http://tubepress.org 4 4 Tags: video, youtube, gallery, videos, vimeo 5 Requires at least: 3.05 Requires at least: 2.2 6 6 Stable tag: trunk 7 7 … … 31 31 32 32 == 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 33 38 = 3.1.0 = 34 **PHP 5.2 or higher is required for this version of TubePress!**35 36 39 * New Features 37 40 * Major speed boost (up to 4x faster) via optional boot cache -
tubepress/trunk/tubepress.php
r747997 r748152 5 5 Description: 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! 6 6 Author: Eric D. Hough 7 Version: 3.1. 07 Version: 3.1.1 8 8 Author URI: http://ehough.com 9 9 -
tubepress/trunk/vendor/ehough/tickertape/src/main/php/ehough/tickertape/ContainerAwareEventDispatcher.php
r747997 r748152 140 140 public function addSubscriberService($serviceId, $class) 141 141 { 142 foreach ($class::getSubscribedEvents() as $eventName => $params) { 142 $ref = new ReflectionClass($class); 143 $instance = $ref->newInstance(); 144 145 foreach ($instance->getSubscribedEvents() as $eventName => $params) { 143 146 if (is_string($params)) { 144 147 $this->listenerIds[$eventName][] = array($serviceId, $params, 0);
Note: See TracChangeset
for help on using the changeset viewer.