Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/instruments/NDB_BVL_Instrument_TEMPLATE.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class NDB_BVL_Instrument_TEST_NAME extends NDB_BVL_Instrument
*/
function _setupForm(){
if(preg_match("/<TEST_NAME>(_page[0-9]+)/",$this->page,$matches)){
call_user_method($matches[1], $this);
call_user_func(array($this, $matches[1]));
} else {
$this->_main();
}
Expand Down