Show database version if it differs
This commit is contained in:
parent
8a9a5d4efe
commit
17302d1bd8
1 changed files with 5 additions and 1 deletions
|
@ -662,7 +662,11 @@ class Page
|
|||
<?php
|
||||
global $options;
|
||||
|
||||
echo 'v' . $options->version;
|
||||
if (VERSION === $options->version) {
|
||||
echo 'v' . VERSION;
|
||||
} else {
|
||||
echo 'v' . VERSION . ' / ' . 'v' . $options->version;
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue