On Thu, Mar 12, 2009 at 11:21 PM, jacmgr <[email protected]> wrote: > > in field/config/config.php file > > <?php > $parts = explode(".", $pageLink); > if($parts[0] == 'admin') $BOLTskin = 'default'; > if($parts[0] == 'apples') $BOLTskin = 'redskin'; > if($parts[1] == 'skins') $BOLTskin = $parts[2];
Or just use the already available $pageArray var: <?php if($pageArray[0] == 'admin') $BOLTskin = 'default'; if($pageArray[0] == 'apples') $BOLTskin = 'redskin'; if($pageArray[1] == 'skins') $BOLTskin = $parts[2]; Cheers, Dan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "BoltWire" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/boltwire?hl=en -~----------~----~----~----~------~----~------~--~---
