Skip to content

Commit

Permalink
[13] To switch off by default some settings
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan <Dfyztimy@list.ru>
  • Loading branch information
Hantet committed Jul 5, 2010
1 parent 0f57975 commit 6d11d9e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions config.php
Expand Up @@ -30,19 +30,19 @@ function get($id)
"title" => "Баг-трекер",
"mingm" => "3",
"pagepath" => "pages/",
"main" => "http://bug",
"anim" => true,
"LinkAccount" => "http://yoursite.ru/admin/account.php?id=",
"LinkPlayer" => "http://yoursite.ru/admin/player.php?guid=",
"main" => "http://localhost",
"anim" => false,
"LinkAccount" => "http://localhost/admin/account.php?id=",
"LinkPlayer" => "http://localhost/admin/player.php?guid=",
/*##################################################################################################
## Announce of updates
## CheckVersion: Check new version in git page of project (boolean).
## version: Current version of bug-tracker. Do not change!
## checkdiff: Different in days for recheck updates.
## defaultdate: Current php time-zone of server.
##################################################################################################*/
"CheckVersion" => true,
"version" => "12",
"CheckVersion" => false,
"version" => "13",
"checkdiff" => 2,
"defaultdate" => date_default_timezone_set('Europe/Moscow'));

Expand All @@ -54,4 +54,4 @@ function get($id)
$cfg = new config;
@mysql_connect($cfg->get("dbhost"),$cfg->get("dbuser"),$cfg->get("dbpass"));
@mysql_query("SET NAMES 'UTF8'");
?>
?>

0 comments on commit 6d11d9e

Please sign in to comment.