Beispiel #1
0
// | Project:    TBDevYSE - TBDev Yuna Scatari Edition                        |
// +--------------------------------------------------------------------------+
// | This file is part of TBDevYSE. TBDevYSE is based on TBDev,               |
// | originally by RedBeard of TorrentBits, extensively modified by           |
// | Gartenzwerg.                                                             |
// |                                                                          |
// | TBDevYSE is free software; you can redistribute it and/or modify         |
// | it under the terms of the GNU General Public License as published by     |
// | the Free Software Foundation; either version 2 of the License, or        |
// | (at your option) any later version.                                      |
// |                                                                          |
// | TBDevYSE is distributed in the hope that it will be useful,              |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of           |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            |
// | GNU General Public License for more details.                             |
// |                                                                          |
// | You should have received a copy of the GNU General Public License        |
// | along with TBDevYSE; if not, write to the Free Software Foundation,      |
// | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA            |
// +--------------------------------------------------------------------------+
// |                                               Do not remove above lines! |
// +--------------------------------------------------------------------------+
*/
require_once "include/bittorrent.php";
dbconn();
loggedinorreturn();
$theme = (string) $_GET["theme"];
if (is_theme($theme)) {
    sql_query("UPDATE users SET theme = " . sqlesc($theme) . " WHERE id = {$CURUSER["id"]}") or sqlerr(__FILE__, __LINE__);
}
header('Location: ' . $DEFAULTBASEURL);
Beispiel #2
0
function stdfoot()
{
    global $CURUSER, $ss_uri, $tracker_lang, $queries, $tstart, $query_stat, $querytime;
    if (!is_theme($ss_uri) || empty($ss_uri)) {
        $ss_uri = select_theme();
    }
    require_once 'themes/' . $ss_uri . '/template.php';
    require_once 'themes/' . $ss_uri . '/stdfoot.php';
    if ((DEBUG_MODE || isset($_GET['yuna'])) && count($query_stat)) {
        foreach ($query_stat as $key => $value) {
            print '<div>[' . ($key + 1) . '] => <b>' . ($value['seconds'] > 0.01 ? '<font color="red" title="Рекомендуется оптимизировать запрос. Время исполнения превышает норму.">' . $value['seconds'] . '</font>' : '<font color="green" title="Запрос не нуждается в оптимизации. Время исполнения допустимое.">' . $value['seconds'] . '</font>') . '</b> [' . htmlspecialchars_uni($value['query']) . ']</div>' . "\n";
        }
        print '<br />';
    }
}