|
From: <var...@us...> - 2016-12-05 13:20:07
|
Revision: 9982
http://sourceforge.net/p/phpwiki/code/9982
Author: vargenau
Date: 2016-12-05 13:20:05 +0000 (Mon, 05 Dec 2016)
Log Message:
-----------
Respect <h*> hierarchy
Modified Paths:
--------------
trunk/lib/upgrade.php
Modified: trunk/lib/upgrade.php
===================================================================
--- trunk/lib/upgrade.php 2016-12-05 12:46:40 UTC (rev 9981)
+++ trunk/lib/upgrade.php 2016-12-05 13:20:05 UTC (rev 9982)
@@ -421,7 +421,7 @@
$backend_type = $this->dbi->_backend->backendType();
if ($this->isSQL) {
- echo "<h4>", _("Backend type: "), $backend_type, "</h4>\n";
+ echo "<p>", _("Backend type: "), $backend_type, "</p>\n";
$prefix = isset($DBParams['prefix']) ? $DBParams['prefix'] : '';
$tables = $this->dbi->_backend->listOfTables();
foreach (explode(':', 'session:pref:member') as $table) {
@@ -705,8 +705,7 @@
if ($this->db_version < $this->current_db_version) {
$this->dbi->set_db_version($this->current_db_version);
$this->db_version = $this->dbi->get_db_version();
- echo _("db version: upgrade to "), $this->db_version, " ";
- echo _("OK"), "<br />\n";
+ echo _("db version: upgrade to "), $this->db_version, " ... ", _("OK"), "<br />\n";
flush();
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|