Hello,

I found and fixed this problem in my app, and am submitting a patch to address the issue in Flux as provided with TDK2.2, I don't see it fixed in the head. This provides a fix for the problem of new users and "$value" being suggested as the default. Something changed from 2.1 such that the default must be quoted or it won't be passed to formCell if null.

Please let me know if this was time well spent (or not, or whatever).

--- FluxUserForm.vm.dist Mon Feb 3 13:20:39 2003
+++ FluxUserForm.vm Mon Feb 3 13:20:52 2003
@@ -33,19 +33,19 @@

#set ( $user = $flux.User )
<tr>
- #formCell ("Username" "username" $!user.UserName)
+ #formCell ("Username" "username" "$!user.UserName")
</tr>
<tr>
#formPasswordCell ("Password" "password" "")
</tr>
<tr>
- #formCell ("First Name" "firstname" $!user.FirstName)
+ #formCell ("First Name" "firstname" "$!user.FirstName")
</tr>
<tr>
- #formCell ("Last Name" "lastname" $!user.LastName)
+ #formCell ("Last Name" "lastname" "$!user.LastName")
</tr>
<tr>
- #formCell ("Email" "email" $!user.Email)
+ #formCell ("Email" "email" "$!user.Email")
</tr>
<tr>
#formCheckBox("Password Expires" "pass_expire" $user.DoesPasswordExpire)

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to