Code: Select all
function IsMovieFile(ext) {
return false;
var types = ",asf,avi,m1v,mov,mp2,mpa,mpe,mpeg,mpg,mpv2,qt,asx,";
var temp = ","+ext+",";
return types.indexOf(temp) > -1;
}
function IsSoundFile(ext) {
return false;
var types = ",aif,aiff,au,mid,midi,rmi,snd,wav,mp3,m3u,wma,";
var temp = ","+ext+",";
return types.indexOf(temp) > -1;
}
I forgot where I saw this at (Nevermind, I found it), but it worked wonders.
I R -+31337+- H4x0r!!111
And yes, I hand-coded the uBB code in this post too
EDIT: Night guys, I'm goin ta bed Happy Hacking!