Displaying 2 results from an estimated 2 matches for "answer_nam".
Did you mean:
answer_name
2006 Mar 15
7
Populating text_tag with serialized data
...9; %>
<% text_tag ''question'', ''answers[1]'' %>
It''s the last two I can''t figure out. I''m sure there is a clean, simple way
of doing it.
Slight complications - my stored array is actually an arrays within an array
- storing the answer_name and correct_or_not. Some answers might have 2
answers, while others might have 5.
Thanks very much,
Steve
http://www.smarkets.net
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060315/35d8f075/attachment....
2003 Dec 01
0
No subject
...nx/source/nmbd/nmbd_nameregister.c
--- samba-2.2.1a/source/nmbd/nmbd_nameregister.c Fri Jan 7 07:55:35
2000
+++ samba-2.2.1a-qnx/source/nmbd/nmbd_nameregister.c Sat Jul 28 20:19:54
2001
@@ -144,12 +144,12 @@
the success function. */
standard_success_register(subrec, rrec->userdata, answer_name,
nb_flags, ttl, registered_ip);
if( rrec->success_fn)
- (*rrec->success_fn)(subrec, rrec->userdata, answer_name,
nb_flags, ttl, registered_ip);
+ (*(register_name_success_function)rrec->success_fn)(subrec,
rrec->userdata, answer_name, nb_flags, ttl, registered_ip);...