summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-03-12 00:13:28 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-03-12 00:13:28 -0400
commite185c0395a6cd250ccd7c8e385c54830be73f937 (patch)
tree5e6807b33f8d622c67d4178652b7ca6819d4a84c /lib/util.php
parent93030ae7b65f9a6b508dac0365dbcff302b65b90 (diff)
Revert "trac #201 Add flowplayer to enable multimedia playback capability."
This reverts commit 9c9b6790ce78296c0b182f03b5f6f2c035e43a7c. This code wasn't ready for release, so I've reverted it for now. Conflicts: lib/action.php lib/util.php
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/util.php b/lib/util.php
index 6341438ca..a43666fa5 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -480,18 +480,12 @@ function common_replace_urls_callback($text, $callback) {
function common_linkify($url) {
// It comes in special'd, so we unspecial it before passing to the stringifying
// functions
- $ext = pathinfo($url, PATHINFO_EXTENSION);
$url = htmlspecialchars_decode($url);
- $video_ext = array('mp4', 'flv', 'avi', 'mpg', 'mp3', 'ogg');
$display = $url;
$url = (!preg_match('#^([a-z]+://|(mailto|aim|tel):)#i', $url)) ? 'http://'.$url : $url;
$attrs = array('href' => $url, 'rel' => 'external');
- if (in_array($ext, $video_ext)) {
- $attrs['class'] = 'media';
- }
-
if ($longurl = common_longurl($url)) {
$attrs['title'] = $longurl;
}