Smart block tooltip content breaks when language setting is not english

This commit is contained in:
denise 2013-01-17 16:19:35 -05:00
parent 76cd86ada8
commit 94a87a0b2e
1 changed files with 2 additions and 2 deletions

View File

@ -498,10 +498,10 @@ class LibraryController extends Zend_Controller_Action
$this->view->md = $md;
if ($block->isStatic()) {
$this->view->blType = _('Static');
$this->view->blType = 'Static';
$this->view->contents = $block->getContents();
} else {
$this->view->blType = _('Dynamic');
$this->view->blType = 'Dynamic';
$this->view->contents = $block->getCriteria();
}
$this->view->block = $block;