Changeset 621069
- Timestamp:
- 11/05/2012 12:55:28 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
the-very-simple-vimeo-shortcode/trunk/very_simple_vimeo_shortcode.php
r616609 r621069 31 31 32 32 function your_local_webmaster_vimeo_handler( $atts, $content=null, $code="" ) { 33 if( $atts['width']){33 if(isset($atts['width'])){ 34 34 $width = $atts['width']; 35 35 } … … 37 37 $width = "400"; 38 38 } 39 if( $atts['height']){39 if(isset($atts['height'])){ 40 40 $height = $atts['height']; 41 41 } … … 43 43 $height = "225"; 44 44 } 45 if( $atts['class']){45 if(isset($atts['class'])){ 46 46 $class=$atts['class']; 47 47 }
Note: See TracChangeset
for help on using the changeset viewer.