Skip to content

Commit 41da245

Browse files
committed
Bump version to 1.0.0d1, format statistics
1 parent 24414ec commit 41da245

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

config.default.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626

2727
// The version of the code.
28-
define("ESO_VERSION", "1.0.0-p.2");
28+
define("ESO_VERSION", "1.0.0d1");
2929

3030
$defaultConfig = array(
3131
// This following block is filled out by the installer in config/config.php.

upgrade/upgrade.controller.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ function init()
6565
writeConfigFile("../config/versions.php", '$versions', $versions);
6666
}
6767

68-
// 1.0.0 pre 1 -> 1.0.0 pre 2
68+
// 1.0.0 pre 1 -> 1.0.0 delta 1
6969
if ($versions["eso"] == "beta-1.0") {
70-
$this->upgrade_100p2();
71-
$versions["eso"] = "1.0.0-p.2";
70+
$this->upgrade_100d1();
71+
$versions["eso"] = "1.0.0d1";
7272
writeConfigFile("../config/versions.php", '$versions', $versions);
7373
}
7474

@@ -163,8 +163,8 @@ function warning($msg)
163163
$_SESSION["warnings"][] = $msg;
164164
}
165165

166-
// 1.0.0 pre 1 -> 1.0.0 pre 2
167-
function upgrade_100p2()
166+
// 1.0.0 pre 1 -> 1.0.0 delta 1
167+
function upgrade_100d1()
168168
{
169169
global $config;
170170

views/admin/dashboard.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
<?php foreach ($this->stats as $k => $v): ?>
5050
<li><label><?php echo $language[$k]; ?></label>
51-
<div><?php echo $v; ?></div></li>
51+
<div><?php echo number_format($v); ?></div></li>
5252
<?php endforeach; ?>
5353

5454
<?php $this->callHook("forumStatistics"); ?>

0 commit comments

Comments
 (0)