Search found 1 match

by klch
Mon Jul 12, 2004 10:57 pm
Forum: Bugs
Topic: Javascript error in serendipity_functions.inc.php (0.60-pl3)
Replies: 1
Views: 3660

Javascript error in serendipity_functions.inc.php (0.60-pl3)

On this line: ... if (this.serendipity_remember.checked) rememberMe(this, ... The checkbox is actually named "serendipity[remember]" and so it complains about it when I click [send] or [preview]. Here's how I fixed it: ... if (this['serendipity[remember]'].checked) rememberMe(this, ... Sor...