Skip to content

Commit

Permalink
Bugfix: case-insensitive extension check
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume.boudreau committed Apr 2, 2011
1 parent a6d1c0d commit 361482f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ function xmlhttpGet(strURL, strQueryString) {
}
$display_infos .= implode(' + ', $ainfos) . ' audio';
}
$ext = substr($v, strrpos($v, '.')+1);
$ext = strtolower(substr($v, strrpos($v, '.')+1));
if (is_dir($real_file)) {
$display_infos .= ', VIDEO_TS (DVD) container';
}
Expand Down

0 comments on commit 361482f

Please sign in to comment.