in the wp-pass.php file look for the following line of code:
setcookie(‘wp-postpass_’ . COOKIEHASH, $_POST[‘post_password’], time() + 864000, COOKIEPATH);
The 86400 is the number of seconds that the cookie will be active.
If you only want the cookie to be active for 30 minutes, change 864000 to 1800
Revive6,
I was pulling my hair out with the same problem. Look in the ie.css file. You’ll see:
#searchdiv {
#margin-left: 398px; /* IE 7 hack */
_margin-left: 365px; /* IE 6 hack */
}
I changed it to :
#searchdiv {
#margin-left: 200px; /* IE 7 hack */
_margin-left: 365px; /* IE 6 hack */
}
It now looks just fine in ie7.
I hope this helps.
Same Problem Here. My gallery feel naked without descriptions under thumbnails.