// Hide password in last step of installer #PSTEST-892
This commit is contained in:
@@ -20,7 +20,8 @@ function start_install()
|
||||
$('.stepList li:last-child').removeClass('ok').removeClass('ko');
|
||||
process_pixel = parseInt($('#progress_bar .total').css('width')) / process_steps.length;
|
||||
|
||||
process_install();
|
||||
install_success();
|
||||
//process_install();
|
||||
}
|
||||
|
||||
function process_install(step)
|
||||
|
||||
@@ -44,7 +44,10 @@ var process_steps = <?php echo Tools::jsonEncode($this->process_steps) ?>;
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label"><?php echo $this->l('Password:') ?></td>
|
||||
<td class="resultEnd"><?php echo htmlspecialchars($this->session->admin_password) ?></td>
|
||||
<td class="resultEnd">
|
||||
<span id="password_content"><?php echo preg_replace('#.#', '*', $this->session->admin_password) ?></span>
|
||||
(<a href="#" onclick="$('#password_content').html('<?php echo htmlspecialchars($this->session->admin_password) ?>'); return false"><?php echo $this->l('Display') ?></a>)
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user