9
1. Create a theme for ie 6 and call it ie6theme
2. Download your common.php file from inside the folder include/
3. Open the file inside an editor
4. Around line 260 or so (before the text
/**
* Theme Selection
*/)
Cut and paste the following code:
// IE6 string from user_agent
$ie6 = "MSIE 6.0"; // detect browser
$browser = $_SERVER['HTTP_USER_AGENT']; // yank the version from the string
$browser = substr("$browser", 25, 8); // if IE6 set the $alert
if($browser == $ie6){ $_SESSION['xoopsUserTheme'] = 'ie6theme';}
5. Save your common.php file
6. upload it back to inside the folder include/