Skip to content

Commit

Permalink
Merge pull request #4062 from sbulen/upgr_tweaks
Browse files Browse the repository at this point in the history
Fixes #4060
  • Loading branch information
Oldiesmann authored May 21, 2017
2 parents 9b1f3df + 8e9f58c commit 55819e1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions other/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2898,7 +2898,7 @@ function ConvertUtf8()
}
}
$_GET['substep'] = 0;
return true;
return false;
}

function serialize_to_json()
Expand Down Expand Up @@ -3781,7 +3781,7 @@ function template_backup_database()
<form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post">
<input type="hidden" name="backup_done" id="backup_done" value="0">
<strong>Completed <span id="tab_done">', $upcontext['cur_table_num'], '</span> out of ', $upcontext['table_count'], ' tables.</strong>
<div id="debug_section" style="height: ', ($is_debug ? '195' : '12') , 'px; overflow: auto;">
<div id="debug_section" style="height: ', ($is_debug ? '115' : '12') , 'px; overflow: auto;">
<span id="debuginfo"></span>
</div>';

Expand Down Expand Up @@ -3946,7 +3946,7 @@ function template_database_changes()
echo 'Completed in ', $totalTime, '<br>';

echo '</span>
<div id="debug_section" style="height: 117px; overflow: auto;">
<div id="debug_section" style="height: 59px; overflow: auto;">
<span id="debuginfo"></span>
</div>';
}
Expand Down Expand Up @@ -4282,7 +4282,7 @@ function template_convert_utf8()
<form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post">
<input type="hidden" name="utf8_done" id="utf8_done" value="0">
<strong>Completed <span id="tab_done">', $upcontext['cur_table_num'], '</span> out of ', $upcontext['table_count'], ' tables.</strong>
<div id="debug_section" style="height: ', ($is_debug ? '195' : '12') , 'px; overflow: auto;">
<div id="debug_section" style="height: ', ($is_debug ? '115' : '12') , 'px; overflow: auto;">
<span id="debuginfo"></span>
</div>';

Expand Down Expand Up @@ -4379,7 +4379,7 @@ function template_serialize_json()
<form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post">
<input type="hidden" name="json_done" id="json_done" value="0">
<strong>Completed <span id="tab_done">', $upcontext['cur_table_num'], '</span> out of ', $upcontext['table_count'], ' tables.</strong>
<div id="debug_section" style="height: ', ($is_debug ? '195' : '12') , 'px; overflow: auto;">
<div id="debug_section" style="height: ', ($is_debug ? '115' : '12') , 'px; overflow: auto;">
<span id="debuginfo"></span>
</div>';

Expand Down

0 comments on commit 55819e1

Please sign in to comment.