Hi there,
just short feedback:
assign with force=true parameter doesn't work for me.
I need to _save_fields with empty values (checkboxes in html forms)
so I had to adapt this method:
<code>
function _save_fields($fields) {
if (!is_array($fields)) settype($fields, 'array');
foreach ($fields as $field) {
if($this->wasSubmitted())
{
// only save non empty values
$value = $this->_read_field_value($field);
$fieldkeys = $this->_parse_field_name($field);
$target = &$this->_dig_into_array($this->_sess_space['values'],
$fieldkeys, true);
$target = $value;
}
}
}
</code>
some for the method to read a value.
Do you mind to exclude the .svn folders in your releases?
I really like formsess - a great project. Looking forward
to have a next stable release.
Cheers, fips
--
-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_idU88&alloc_id065&op=click
|