Show database version if it differs

This commit is contained in:
Jay Trees 2022-04-14 11:14:36 +02:00
parent 8a9a5d4efe
commit 17302d1bd8

View file

@ -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>