From 76da38ebb14bc22e42c4989623c5bdc989d8afde Mon Sep 17 00:00:00 2001 From: Leo Feyer Date: Fri, 2 Nov 2012 16:12:01 +0100 Subject: [PATCH] Moved `Controller::getTheme()` to `Backend::getTheme()` (see #4662) --- src/Resources/contao/dca/tl_newsletter_recipients.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resources/contao/dca/tl_newsletter_recipients.php b/src/Resources/contao/dca/tl_newsletter_recipients.php index d4e109aa22..a995d2b3b9 100644 --- a/src/Resources/contao/dca/tl_newsletter_recipients.php +++ b/src/Resources/contao/dca/tl_newsletter_recipients.php @@ -337,7 +337,7 @@ public function listRecipient($row) $label .= ' (' . $GLOBALS['TL_LANG']['tl_newsletter_recipients']['manually'] . ')'; } - return sprintf('
%s
', TL_ASSETS_URL, $this->getTheme(), ($row['active'] ? 'member' : 'member_'), $label) . "\n"; + return sprintf('
%s
', TL_ASSETS_URL, Backend::getTheme(), ($row['active'] ? 'member' : 'member_'), $label) . "\n"; }