Hi all below is the code in videos module to get Download latest Windows Media Player
-----------------------------------------------------------------------------------
$output = theme('video_format_play', $output, t('http://windowsupdate.microsoft.com/'),
t('Link to Windows Update'),
t('Download latest Windows Media Player'));
-----------------------------------------------------------------------------------
But i need this link to open in blank window

so i tried changing code like this

$output = theme('video_format_play', $output, t('http://windowsupdate.microsoft.com/'),
t('Link to Windows Update'),
t('Download latest Windows Media Player'),array('target'=>'_blank'));
even i am unable to open this url in blank page
can any one give support on this asap
i will be thankful for your suggestions

Comments

zeta ζ’s picture

I don’t have this module to test, but I think this is what you are trying to do;

 $output = theme('video_format_play', $output, 'http://windowsupdate.microsoft.com/', t('Link to Windows Update'),
    array('data' => t('Download latest Windows Media Player'), 'target'=>'_blank')); 
Edited:
Thanks to dman – I didn’t even look at that bit :*) . I’m not sure this is a video format that should be played :-S . You might want to check that the theme function expects a url simply as a string, and checks it properly.

___________________
It’s in the detaιls…

demonstration portfolio

dman’s picture

t('http://windowsupdate.microsoft.com/')
is a mis-use of the translation function :-)

.dan.
How to troubleshoot Drupal | http://www.coders.co.nz/