|
@@ 314-316 (lines=3) @@
|
| 311 |
|
); |
| 312 |
|
|
| 313 |
|
// Let Jetpack know about our local caps. |
| 314 |
|
foreach ( array( 'read_videos', 'edit_videos', 'delete_videos', 'upload_videos' ) as $cap ) |
| 315 |
|
if ( $this->can( $cap ) ) |
| 316 |
|
$params['caps'][] = $cap; |
| 317 |
|
|
| 318 |
|
$xml->query( $method, $params ); |
| 319 |
|
|
|
@@ 733-734 (lines=2) @@
|
| 730 |
|
wp_enqueue_style( 'videopress-admin', plugins_url( 'videopress-admin.css', __FILE__ ), array(), $this->version ); |
| 731 |
|
|
| 732 |
|
$caps = array(); |
| 733 |
|
foreach( array( 'read_videos', 'edit_videos', 'delete_videos', 'upload_videos' ) as $cap ) |
| 734 |
|
$caps[ $cap ] = $this->can( $cap ); |
| 735 |
|
|
| 736 |
|
$l10n = array( |
| 737 |
|
'selectVideoFile' => __( 'Please select a video file to upload.', 'jetpack' ), |