View file aiv2 AutoIndex/switch.php
<?php
/**
* @name switch.php
* @description Used to switch between web and mobile templates!
* @package Punk Autoindex
* @author MobiHacK
* @copyright RockiTech Group
* @version 2.0
*/
include'config.php';
if($_GET['type']=='web' or $_GET['type']=='mob')
$_SESSION['view']=$_GET['type'];
header('Location: '.$config->installdir.'/',true,301);
?>