diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-06-18 07:20:54 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-06-18 07:20:54 -0400 |
commit | 0ac3aa92df97ea7fd06bdcbb744b6c910cdb09ed (patch) | |
tree | ae3e67a882ff6502c6bd5e0babf182c93f5bd2dd /engine/lib/entities.php | |
parent | 098976fd34e6c98675a20c19fd54329ec44f6261 (diff) | |
download | elgg-0ac3aa92df97ea7fd06bdcbb744b6c910cdb09ed.tar.gz elgg-0ac3aa92df97ea7fd06bdcbb744b6c910cdb09ed.tar.bz2 |
Fixes #4483 fixes undefined variable errors for non-deprecated functions in engine
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r-- | engine/lib/entities.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index ae5df66f7..d950261a2 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1774,7 +1774,7 @@ function import_entity_plugin_hook($hook, $entity_type, $returnvalue, $params) { if ($tmp) { // Make sure its saved if (!$tmp->save()) { - elgg_echo('ImportException:ProblemSaving', array($element->getAttribute('uuid'))); + $msg = elgg_echo('ImportException:ProblemSaving', array($element->getAttribute('uuid'))); throw new ImportException($msg); } |