On Sat, Sep 18, 2010 at 09:27:01PM +0200, Allan Jensen wrote: > Any suggestions, other than doing a complete code+DB wipe and install from > scratch from the Sourceforge tarball? I've got some changes in some of the files, part of the code cleanup. Martin suggested that you look at the file lib/gui.controls.inc.php
At line 31 you have: $obj_data = call_user_func_array(array(&$obj,"get_all"),$obj_params); Change it to: call_user_func_array(array(&$obj,"get_all"),array($obj_params)); Or the line above that one put the following: if (!is_array($obj_params)) $obj_params = array(); -- Craig Small GnuPG:1C1B D893 1418 2AF4 45EE 95CB C76C E5AC 12CA DFA5 http://www.enc.com.au/ csmall at : enc.com.au http://www.debian.org/ Debian GNU/Linux, software should be Free ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ jffnms-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jffnms-users
