aboutsummaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorglen201 <glen201@527446.no-reply.drupal.org>2009-07-24 05:32:55 +0000
committerglen201 <glen201@527446.no-reply.drupal.org>2009-07-24 05:32:55 +0000
commit814d3579e25baa41fc72e5de20b3cf6cc964ae3a (patch)
treef835b32da6a971d30fd173aa0714215e98c8edc6 /includes
parent5955eb6ff6d8c64758c992c9d1d4c73fab35a162 (diff)
downloadvideo-814d3579e25baa41fc72e5de20b3cf6cc964ae3a.tar.gz
video-814d3579e25baa41fc72e5de20b3cf6cc964ae3a.tar.bz2
GMM: add link to Windows Media Player plug-in for Firefox browsers
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc11
1 files changed, 8 insertions, 3 deletions
diff --git a/includes/common.inc b/includes/common.inc
index c86cc57..eeca72a 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -360,9 +360,14 @@ classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" >
</object>'; // only one </object> needed becouse only one opening tag has been parsed by browsers
- $output = theme('video_format_play', $output, t('http://windowsupdate.microsoft.com/'),
- t('Link to Windows Update'),
- t('Download latest Windows Media Player'));
+ $output = "\n<div id=\"video-player\">\n" . $output;
+ $output .= "<p>\n". t('Problems viewing videos?');
+ $output .= "<br />\n";
+ $output .= l(t('Download latest Windows Media Player'), t('http://windowsupdate.microsoft.com/'), array('attributes' => array('title' => t('Link to Windows Update')), 'absolute' => TRUE));
+ //GMM: add link to Windows Media Player plug-in for Firefox browsers
+ $output .= "<br />\n";
+ $output .= l(t('Download the plug-in for Firefox'), t('http://support.mozilla.com/en-US/kb/Using+the+Windows+Media+Player+plugin+with+Firefox'), array('attributes' => array('title' => t('Link to Firefox Plug-in')), 'absolute' => TRUE));
+ $output .= "\n</p> \n </div>\n";
return $output;
}