Changeset 706892
- Timestamp:
- 05/02/2013 11:24:31 AM (13 years ago)
- Location:
- live-stream-badger/trunk
- Files:
-
- 2 edited
-
domain/class-stream-info.php (modified) (1 diff)
-
shortcode/class-embedded-stream.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
live-stream-badger/trunk/domain/class-stream-info.php
r700755 r706892 37 37 public $watching_now = -1; 38 38 39 /** 40 * URL to the channel image 41 * 42 * @var string 43 */ 44 public $image_url = ''; 45 39 46 } 40 47 -
live-stream-badger/trunk/shortcode/class-embedded-stream.php
r704174 r706892 6 6 7 7 function do_shortcode( $attrs ) { 8 $defaults = array( 9 'url' => '', 10 'width' => '620', 11 'height' => '378' 12 ); 13 $attrs = shortcode_atts( $defaults, $attrs ); 8 $attrs = shortcode_atts( array( 9 'url' => '', 10 'width' => '620', 11 'height' => '378' 12 ), $attrs ); 14 13 15 14 if ( empty( $attrs['url'] ) )
Note: See TracChangeset
for help on using the changeset viewer.