Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Moved Controller::getTheme() to Backend::getTheme() (see #4662)
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Nov 2, 2012
1 parent c19a996 commit 76da38e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/contao/dca/tl_newsletter_recipients.php
Expand Up @@ -337,7 +337,7 @@ public function listRecipient($row)
$label .= ' <span style="color:#b3b3b3;padding-left:3px">(' . $GLOBALS['TL_LANG']['tl_newsletter_recipients']['manually'] . ')</span>';
}

return sprintf('<div class="tl_content_left"><div class="list_icon" style="background-image:url(\'%ssystem/themes/%s/images/%s.gif\')">%s</div></div>', TL_ASSETS_URL, $this->getTheme(), ($row['active'] ? 'member' : 'member_'), $label) . "\n";
return sprintf('<div class="tl_content_left"><div class="list_icon" style="background-image:url(\'%ssystem/themes/%s/images/%s.gif\')">%s</div></div>', TL_ASSETS_URL, Backend::getTheme(), ($row['active'] ? 'member' : 'member_'), $label) . "\n";
}


Expand Down

0 comments on commit 76da38e

Please sign in to comment.