I've had some clients not wanting the uber cool password strength checking in Drupal 6. Well, here's a very short tip how to disable this.
Just add the following in some javascript (your theme, your module, ...)
<script language="javascript">
// disabling password security check
Drupal.behaviors.password = function(context) {
return;
}
</script>
Hooray for behaviors!
