Re: [Phplib-users] PHP Notice: oohforms
Brought to you by:
nhruby,
richardarcher
From: Frank B. <fb...@sy...> - 2004-11-04 22:52:52
|
At 05:20 PM 11/4/04, Jeremy Weathers wrote: >Quoth Frank Bax: > > > I've been using phplib7.4 for some time now. I recently upgraded php from > > 4.0.4 to 4.3.8 and now I get the following entries in my Apache log for > > every element in my forms: > > >I don't use oohforms myself, but the following changes should take care of >these warnings. Please try them and let me know. If I haven't heard that >these changes are flawed from anyone in a couple days I'll commit them to >CVS. Thanks for prompt response, there seem to be a few more problems here. Each page access generates so *many* notices its hard to know I've got them all until they are fixed. I figured one out by myself: # diff oohforms.inc-save oohforms.inc 272c272 < if ($el->hidden) { --- > if (isset($el->hidden)) { But I don't know what to do with these: PHP Notice: Undefined index: frozen - line 308 PHP Notice: Undefined index: ndx_array - line 230 PHP Notice: Undefined property: method - line 345 PHP Notice: Undefined index: Kill - line 21 Frank |