mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
BUGFIX Disabled "untranslated" CSS class for SiteTree elements - doesn't apply any longer with the new "translation groups" concept
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@73339 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
103c6e8d68
commit
fef49abefa
@ -1746,9 +1746,10 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
|||||||
$classes .= " notinmenu";
|
$classes .= " notinmenu";
|
||||||
|
|
||||||
//TODO: Add integration
|
//TODO: Add integration
|
||||||
|
/*
|
||||||
if(Translatable::is_enabled() && $controller->Lang != Translatable::default_lang() && !$this->isTranslation())
|
if(Translatable::is_enabled() && $controller->Lang != Translatable::default_lang() && !$this->isTranslation())
|
||||||
$classes .= " untranslated ";
|
$classes .= " untranslated ";
|
||||||
|
*/
|
||||||
$classes .= $this->markingClasses();
|
$classes .= $this->markingClasses();
|
||||||
|
|
||||||
return $classes;
|
return $classes;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user