From 7923b376b42737f6549579ffb93a14c71ffa019b Mon Sep 17 00:00:00 2001 From: Penny Leach Date: Mon, 4 Jan 2010 03:43:18 +0000 Subject: [PATCH] portfolio NOBUG just fixed some code wrapping in a long line --- mod/glossary/locallib.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/mod/glossary/locallib.php b/mod/glossary/locallib.php index 67ec76148c..e25b8f64b4 100644 --- a/mod/glossary/locallib.php +++ b/mod/glossary/locallib.php @@ -141,7 +141,14 @@ class glossary_full_portfolio_caller extends portfolio_module_caller_base { $format = $this->exporter->get('format'); $filename = $this->get('exporter')->get('format')->manifest_name(); foreach ($entries as $e) { - $content = glossary_entry_portfolio_caller::entry_content($this->course, $this->cm, $this->glossary, $e, (array_key_exists($e->id, $aliases) ? $aliases[$e->id] : array()), $format); + $content = glossary_entry_portfolio_caller::entry_content( + $this->course, + $this->cm, + $this->glossary, + $e, + (array_key_exists($e->id, $aliases) ? $aliases[$e->id] : array()), + $format + ); $entry = new portfolio_format_leap2a_entry('glossaryentry' . $e->id, $e->concept, 'entry', $content); $entry->author = $DB->get_record('user', array('id' => $e->userid), 'id,firstname,lastname,email'); $entry->published = $e->timecreated; -- 2.39.5