use hash
This commit is contained in:
parent
83a9a1bcd2
commit
0e235682d1
2 changed files with 4 additions and 1 deletions
|
@ -71,6 +71,9 @@ function get_stats(){
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(file_exists("currentgithash"))
|
||||||
|
$hash = file_get_contents("currentgithash");
|
||||||
|
|
||||||
$page = isset($_GET["page"])?$_GET["page"]:"dashboard";
|
$page = isset($_GET["page"])?$_GET["page"]:"dashboard";
|
||||||
|
|
||||||
if (!auth()) {
|
if (!auth()) {
|
||||||
|
|
|
@ -16,7 +16,7 @@ $stats = get_stats();
|
||||||
<!-- Breadcrumbs-->
|
<!-- Breadcrumbs-->
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item active">
|
<li class="breadcrumb-item active">
|
||||||
<a href="#">Dashboard</a>
|
<a href="#">Dashboard <?php echo $hash; ?></a>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue