No, this is a Joomlashack template and the default params.ini is being used.
Code: |
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted index access' );
define( 'YOURBASEPATH', dirname(__FILE__) );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<jdoc:include type="head" />
<?php
$affiliate = $this->params->get( 'affiliate', "" );
$HeaderScr = $this->params->get( 'headerscript',"" );
$FooterScr = $this->params->get( 'footerscript', "" );
$cPanel = ($this->params->get("cPanel", 1) == 0)?"false":"true";
$cPanelheight = $this->params->get("cPanelheight", "100");
$cPanelSpeed = $this->params->get("cPanelSpeed", "200");
$cPanelText = $this->params->get("cPanelText", "Bulletin");
$user456suffix = $this->params->get("user456suffix", "S5");
$user345suffix = $this->params->get("user345suffix", "S4");
$color = $this->params->get("color", "blue");
|