steelerboi Posted March 28, 2009 Report Share Posted March 28, 2009 After applying the latest beta update, I noticed an error after adding a schedule via the admin centre: Warning: implode() [function.implode]: Invalid arguments passed in /home/plusair/public_html/admin/modules/Operations/Operations.php on line 514 The fix to this (as identified by a dev friend of mine) is to the input sanitisation in Vars.class.php public static function cleaned(&$V) { if(is_array($V)) { foreach($V as $k => $val) { $V[$k] = self::cleaned($val); } return $V; } return htmlspecialchars(addslashes(stripslashes($V))); } Hope this helps anybody suffering from the same error. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted March 28, 2009 Administrators Report Share Posted March 28, 2009 Thanks, I corrected the error for the next build, but also fixed it in the operations class. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.