I realised that the password list looked relatively different. Then upon checking user.php, I saw :
$pass=crypt($pass,substr($dbpass,0,2));
That won't do, as my passwords seemed to be MD5 now. So, change the above to :
$pass=crypt($pass,$dbpass,0,2);
And now all is well again with the world...
2086