Fix for the fix #2
authorRoland Häder <roland@mxchange.org>
Mon, 16 Nov 2009 04:53:56 +0000 (04:53 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 16 Nov 2009 04:53:56 +0000 (04:53 +0000)
inc/modules/admin/what-email_archiv.php

index efc103e29f6d633eb8e158e60607f883a89b1637..b1e95ed100ac08293680b491c436febdd36f3b20 100644 (file)
@@ -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);