Bekomme folgenden Fehler: PHP: WARNING(2): "Missing argument 1 for JSOptionsControl::get_options_array(), called in .../gm_javascript.js.php on line 38 and defined" in ....system\controls\JSOptionsControl.inc.php:15 Der betreffende Code in "gm_javascript.js.php" ist PHP: $coo_js_options_control = MainFactory::create_object('JSOptionsControl', array(false)); $t_js_options_array = $coo_js_options_control->get_options_array(); und in "system\controls\JSOptionsControl.inc.php" PHP: class JSOptionsControl{ function get_options_array( $p_get_array ) { $coo_js_options_source = MainFactory::create_object('JSOptionsSource', array(false)); $coo_js_options_source->init_structure_array($p_get_array); return $coo_js_options_source->get_array(); } } D.h., der Parameter "$p_get_array" von "function get_options_array" wird beim Aufruf nicht übergeben...... Ich habe den mal auf "null" gesetzt, da er nirgends verwendet wird....... PHP: $t_js_options_array = $coo_js_options_control->get_options_array(null);