diff --git a/ucp-settingsp.php b/ucp-settingsp.php
index d443774..b6fcd4a 100644
--- a/ucp-settingsp.php
+++ b/ucp-settingsp.php
@@ -28,19 +28,19 @@ if ($action == 'changepw') {
$hpw = $fetch['password'];
$islegit = $polrauth->processlogin($username, $currpw);
if (!$islegit) {
- die('Invalid current password. Forgot your password? Back');
+ die('Invalid current password. Back');
}
$sqr = "UPDATE auth SET password = '{$hashed}' WHERE `username`='{$username}';";
$res = $mysqli->query($sqr);
if ($res) {
require_once 'header.php';
- echo "Success! Back";
+ echo "Success! Back";
require_once 'footer.php';
die();
} else {
require_once 'header.php';
- echo "Error! Back";
+ echo "Error! Back";
require_once 'footer.php';
die();
}