0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
modules
/
[
Home
]
File: mod-switch_theme.php
<?php //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } global $feature_userPreferences, $change_theme, $user; if(isset($_COOKIE['tiki-theme']) && !($feature_userPreferences == 'y' && $user && $change_theme == 'y')){ $style = $_COOKIE['tiki-theme']; } $smarty->assign('styleslist',$tikilib->list_styles()); $smarty->assign("available_styles", unserialize($tikilib->get_preference("available_styles"))); if(isset($style)){ $smarty->assign('styleName', ereg_replace($tikidomain."/", "", $style)); } ?>