mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
- fix page title in setup
This commit is contained in:
parent
56fa0fa039
commit
79c06713cb
1 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,6 @@ require_once(MTTINC. 'class.dbconnection.php');
|
|||
require_once(MTTINC. 'class.config.php');
|
||||
require_once(MTTINC. 'version.php');
|
||||
|
||||
$mttVersion = mytinytodo\Version::VERSION;
|
||||
$db = null;
|
||||
$ver = '';
|
||||
$error = '';
|
||||
|
|
@ -42,7 +41,8 @@ $configExists = file_exists(MTTPATH. 'config.php');
|
|||
$oldConfigExists = file_exists(MTTPATH. 'db/config.php');
|
||||
|
||||
|
||||
echo '<html><head><meta name="robots" content="noindex,nofollow"><title>myTinyTodo $mttVersion Setup</title></head><body>';
|
||||
$mttVersion = htmlspecialchars(mytinytodo\Version::VERSION);
|
||||
echo "<html><head><meta name='robots' content='noindex,nofollow'><title>myTinyTodo $mttVersion Setup</title></head><body>";
|
||||
echo "<big><b>myTinyTodo $mttVersion Setup</b></big><br><br>";
|
||||
|
||||
if (!$configExists && $oldConfigExists)
|
||||
|
|
|
|||
Loading…
Reference in a new issue