From a3921e6e7dac39605faa4f9194ff428c331002dc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 16 Nov 2009 04:53:56 +0000 Subject: [PATCH 1/1] Fix for the fix #2 --- inc/modules/admin/what-email_archiv.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/modules/admin/what-email_archiv.php b/inc/modules/admin/what-email_archiv.php index efc103e29f..b1e95ed100 100644 --- a/inc/modules/admin/what-email_archiv.php +++ b/inc/modules/admin/what-email_archiv.php @@ -108,7 +108,7 @@ if (SQL_NUMROWS($result) > 0) { } // END - if // Prepare data for the row template - $content = array( + $content = merge_array($content, array( 'sw' => $SW, 'u_link' => generateUserProfileLink($pool['sender']), 'subject' => $pool['subject'], @@ -124,7 +124,7 @@ if (SQL_NUMROWS($result) > 0) { 'url' => $pool['url'], 'timestamp' => generateDateTime($pool['timestamp'], 0), 'mid' => $pool['id'], - ); + )); // Load row template and switch colors $OUT .= loadTemplate('admin_email_archiv_row', true, $content); -- 2.30.2