here you go
find `<?php` (line 1)
add after
`session_start();`
Find
`if (!zp_loggedin()) { /* Display the login form and exit. */`
Add After:
`if (isset($_GET['ignore'])){
$_SESSION['ignoreNormalPassword'] = true;
}
// Display the login form and exit.
if ($_SESSION['ignoreNormalPassword'] != true){
if (zp_conf(adminpass) == '1234'){
echo 'You are currently using the defult password. This is insecure because many people know this password. It is recomended to change it. If you want to continue click here Continue AnywaysIf you change it, just refresh this page.';
}
}`
This is how I would do it, if you want to change it. And I don't care for credit, but if you want to give credit its Chris S.