Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 414 → Rev 415

/trunk/plugins/adminPages/050_oobe/oobe.php
83,12 → 83,18
 
echo '<p><u>'._L('Step %1: Authenticate',$step++).'</u></p>';
 
if (OIDplus::authUtils()->isAdminLoggedIn()) {
 
echo '<p><font color="green">You are already logged in as administrator.</font></p>';
 
} else {
 
echo '<p>'._L('Please enter the administrator password you have entered before.').'</p>';
 
echo '<p><input type="password" name="admin_password" value=""> (<a href="'.OIDplus::getSystemUrl().'setup/">'._L('Forgot password?').'</a>) ';
 
if (isset($_REQUEST['sent'])) {
if (!OIDplusAuthUtils::adminCheckPassword($_REQUEST['admin_password'])) {
if (!OIDplus::authUtils()->adminCheckPassword($_REQUEST['admin_password'])) {
$errors_happened = true;
$edits_possible = false;
echo '<font color="red"><b>'._L('Wrong password').'</b></font>';
96,6 → 102,7
}
 
echo '</p>';
}
 
#------------------------
$do_edits = isset($_REQUEST['sent']) && $edits_possible;;