Skip to content

Commit

Permalink
Corrected bug mineur
Browse files Browse the repository at this point in the history
  • Loading branch information
HikeGame committed Feb 18, 2018
1 parent b4322dc commit 4f9659a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion includes/pages/adm/ShowNewsPage.php
Expand Up @@ -65,7 +65,7 @@ function ShowNewsPage(){
$template->assign_vars(array(
'NewsList' => $NewsList,
'button_submit' => $LNG['button_submit'],
'nws_total' => sprintf($LNG['nws_total'], (!isset($NewsList) ? count($NewsList) : 0))),
'nws_total' => sprintf($LNG['nws_total'], (!isset($NewsList) ? count($NewsList) : 0)),
'nws_news' => $LNG['nws_news'],
'nws_id' => $LNG['nws_id'],
'nws_title' => $LNG['nws_title'],
Expand Down
2 changes: 1 addition & 1 deletion includes/pages/game/ShowResearchPage.class.php
Expand Up @@ -58,7 +58,7 @@ private function CancelBuildingFromQueue()
$db = Database::get();

$elementId = $USER['b_tech_id'];
$costResources = BuildFunctions::getElementPrice($USER, $PLANET, $elementId, false, $PLANET[$elementId] + 1);
$costResources = BuildFunctions::getElementPrice($USER, $PLANET, $elementId, false, $PLANET[$elementId]);

if($PLANET['id'] == $USER['b_tech_planet'])
{
Expand Down
2 changes: 1 addition & 1 deletion styles/templates/adm/overall_header.tpl
Expand Up @@ -24,7 +24,7 @@
<link rel="stylesheet" type="text/css" href="./styles/resource/css/base/jquery.css?v={$REV}">
<link rel="stylesheet" type="text/css" href="./styles/resource/css/base/jquery.fancybox.css?v={$REV}">
<link rel="stylesheet" type="text/css" href="./styles/resource/css/base/validationEngine.jquery.css?v={$REV}">
<link rel="stylesheet" type="text/css" href="./styles/theme/gow/formate.css?v={$REV}">
<link rel="stylesheet" type="text/css" href="./styles/theme/gow/ingame.css?v={$REV}">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<script type="text/javascript">
var ServerTimezoneOffset = {$Offset};
Expand Down

0 comments on commit 4f9659a

Please sign in to comment.