Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Revision history for HTML-FormFu-Model-LDAP
0.0103 2008-10-08 12:27:00+0200
I hate checkboxes and everything related to them.
I hate checkboxes and everything related to them.
God damn piece of crap design.

0.0102
Fix checkbox support to default_values (on as a value)
Fix checkbox/remove support in general by issuing remove for undef values
Expand Down
8 changes: 4 additions & 4 deletions lib/HTML/FormFu/Model/LDAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ Example usage:

# $ldap_entry should inherit from Net::LDAP::Entry, or atleast
# implement get_value(), replace() and update()

# set form's default values from LDAP

$form->model->default_values($ldap_entry);

# update LDAP with values from submitted form

if ($form->submitted_and_valid) {
$form->model->update($ldap_entry);
}
Expand Down