From e4c4ce3d458d4e1ef8479feac6701826232d56b6 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 5 Dec 2011 16:14:21 +0000 Subject: [PATCH] fixing an php5.2.x error for ::export... to ->export... - we dont need the static call here anyhow. --- importexport/inc/class.importexport_definitions_ui.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/importexport/inc/class.importexport_definitions_ui.inc.php b/importexport/inc/class.importexport_definitions_ui.inc.php index 676b60e2e8..c699c0d461 100644 --- a/importexport/inc/class.importexport_definitions_ui.inc.php +++ b/importexport/inc/class.importexport_definitions_ui.inc.php @@ -391,7 +391,7 @@ class importexport_definitions_ui foreach($selected as $id) { $definition = new importexport_definition($id); try { - $export = $bodefinitions::export_from_import($definition); + $export = $bodefinitions->export_from_import($definition); $export->save(); } catch (Exception $e) { if($export)