Skip to content

Commit

Permalink
adding version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Gershman committed Jul 3, 2018
1 parent 5b47116 commit 542a125
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion admin/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="col-md">
<div class="jumbotron">
<h1 class="display-4"><?php echo $GLOBALS['welcome']?>, <?php echo $_SESSION['username']?>...</h1>
<p class="lead"><?php echo $GLOBALS['welcome_to_yap']?></p>
<p class="lead"><?php echo $GLOBALS['welcome_to_yap']?> (<?php echo $GLOBALS['version']?>)</p>
<hr class="my-4">
<p><?php echo $GLOBALS['introduction']?></p>
<a target="_blank" class="btn btn-primary btn-md" href="https://github.com/radius314/yap/blob/unstable/README.md" role="button"><?php echo $GLOBALS['documentation']?></a>
Expand Down
1 change: 1 addition & 0 deletions functions.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php
include_once 'config.php';
$version = "2.0.0-beta1";
$word_language_selected = isset($GLOBALS['word_language']) ? $GLOBALS['word_language'] : 'en-US';
include_once 'lang/'.$word_language_selected.'.php';

Expand Down

0 comments on commit 542a125

Please sign in to comment.