MDL-16587: mod/forum portfolio implementation: fixed warning.

This commit is contained in:
mjollnir_
2008-10-13 10:10:14 +00:00
parent e02135a686
commit 42579aeeb8
+1 -1
View File
@@ -7404,7 +7404,7 @@ class forum_portfolio_caller extends portfolio_module_caller_base {
$output .= $formattedtext;
if (array_key_exists($post->id, $this->keyedfiles) && is_array($this->keyedfiles[$post->id])) {
if (is_array($this->keyedfiles) && array_key_exists($post->id, $this->keyedfiles) && is_array($this->keyedfiles[$post->id])) {
$output .= '<div class="attachments">';
$output .= '<br /><b>' . get_string('attachments', 'forum') . '</b>:<br /><br />';
$format = $this->get('exporter')->get('format');