???????????????
???????????????
Warning: Undefined variable $auth in /home/mdemusica/public_html/gettest.php on line 544
Warning: Trying to access array offset on value of type null in /home/mdemusica/public_html/gettest.php on line 544
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 181
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 182
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 183
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 184
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 185
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 186
PK ܛL\=`, , index.phpnu [ ");
if($_COOKIE[$names[$i]] != "show"){
$$names[$i] = "hide";
}else{
$$names[$i] = "show";
}
}else{
$$names[$i] = "show";
}
}
// GET THE PREFERRED SKIN
if(isset($_COOKIE['skin'])){
$skin = $_COOKIE['skin'];
}else{
$skin = $defaultSkin;
}
// GET THE SLIDE SHOW SPEED
if(isset($_COOKIE['ssSpeed'])){
$ssSpeed = $_COOKIE['ssSpeed'] * 1000;
}else{
$ssSpeed = $defaultSSSpeed * 1000;
}
// GET THE SORT BY AND DIRECTION
if(isset($_COOKIE['sortBy'])){
$sortBy = $_COOKIE['sortBy'];
}else{
$sortBy = $defaultSort;
}
if(isset($_COOKIE['sortDir'])){
$sortDir = $_COOKIE['sortDir'];
}else{
$sortDir = $defSortDirection;
}
}
if($_GET['action'] == "getFolderContents"){
if(substr($_GET['dir'],0,2) != ".." && substr($_GET['dir'],0,1) != "/" && $_GET['dir'] != "./" && !stristr($_GET['dir'], '../')){
$dir = $_GET['dir'];
$list = new FNFileList;
$list->getDirList($dir);
exit;
}else{
// someone is poking around where they shouldn't be
echo("Don't hack my shit yo.");
exit;
}
}else if($_GET['action'] == "nextImage"){
$out = new FNOutput;
$tmp = $out->nextAndPrev($_GET['pic']);
if($tmp[1] == ""){
$nextpic = $tmp[2];
}else{
$nextpic = $tmp[1];
}
// get the image to preload
$tmp2 = $out->nextAndPrev($nextpic);
// get the image dimensions
$imageDim = @getimagesize($nextpic);
echo $nextpic."|".$imageDim[0]."|".$imageDim[1]."|".$tmp2[1];
exit;
}
?>
viewFile(secCheck($_GET['view']));
}else{
// someone is poking around where they shouldn't be
echo("Don't hack my shit yo.");
exit;
}
}else if(isset($_GET['src'])){
if(substr($_GET['src'],0,2) != ".." && substr($_GET['src'],0,1) != "/" && $_GET['src'] != "./" && !stristr($_GET['src'], '../')){
$out = new FNOutput;
$out->showSource(secCheck($_GET['src']));
}else{
// someone is poking around where they shouldn't be
echo("Don't hack my shit yo.");
exit;
}
}
?>