Okay, this isn't a fix, but it's a workaround. Create an empty text file (in notepad for example) and name it anything you like as long as the extension is .htm or .html
Copy/paste the following into the file.
<html><head>
<title>StoryCrafter.com Autologin</title>
</head><body>
<form name="form1" method="post" action="http://www.storycrafter.com/index.php/index.php" id="login">
<input value="" name="mname" type="text"> <!-- Your Member Name goes in the value here -->
<input value="" name="password" type="password"> <!-- your password goes in the value here -->
<input name="Submit" value="Login" type="submit">
<input name="mlogin" value="true" type="hidden">
<input name="storyid" value="" type="hidden">
</form>
<script type="text/javascript">
function myfunc () {
var frm = document.getElementById("login");
frm.submit();
}
window.onload = myfunc;
</script>
</body></html>
Then type in your StoryCrafter member name and password inside the quotes for value="" on mname and password. If you open that file it will automatically log you into StoryCrafter. You can even make a bookmark/favourite if you want (although you will have to either type in the path or if you are quick you can hit ESC to stop the page loading before it jumps to SC).
Please note that your password will be visible and readable in this file (but not when you're on StoryCrafter, obviously) so only use it/save it where only you can access it.
Hope you find it useful.
(I haven't figured out how to get this to work on OperaMini my BlackBerry yet, which is where I
really need it, although it works in the native browser.)