mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* removed 'v' from version string
This commit is contained in:
parent
72cd34a7b0
commit
8be18ac673
2 changed files with 3 additions and 3 deletions
|
|
@ -32,7 +32,7 @@ $dbtype = ($dbclass == 'database_mysql') ? 'mysql' : 'sqlite';
|
|||
|
||||
$lastVer = '1.3.1';
|
||||
echo '<html><head><meta name="robots" content="noindex,nofollow"></head><body>';
|
||||
echo "<big><b>myTinyTodo v@VERSION Setup</b></big><br><br>";
|
||||
echo "<big><b>myTinyTodo @VERSION Setup</b></big><br><br>";
|
||||
|
||||
# determine current installed version
|
||||
$ver = get_ver($db, $dbtype);
|
||||
|
|
@ -187,7 +187,7 @@ elseif($ver == $lastVer)
|
|||
else
|
||||
{
|
||||
if(!in_array($ver, array('1.1','1.2','1.3.0'))) {
|
||||
exitMessage("Can not update database. Unsupported version (v$ver).");
|
||||
exitMessage("Can not update. Unsupported database version ($ver).");
|
||||
}
|
||||
if(!isset($_POST['update'])) {
|
||||
exitMessage("Update database v$ver
|
||||
|
|
|
|||
|
|
@ -235,7 +235,7 @@ $().ready(function(){
|
|||
<div id="space"></div>
|
||||
</div>
|
||||
|
||||
<div id="footer"><div id="footer_content">Powered by <strong><a href="http://www.mytinytodo.net/">myTinyTodo</a></strong> v@VERSION </div></div>
|
||||
<div id="footer"><div id="footer_content">Powered by <strong><a href="http://www.mytinytodo.net/">myTinyTodo</a></strong> @VERSION </div></div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Reference in a new issue