mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX Fixing stray . in the "Page type: x" tooltip hovering over a page
This commit is contained in:
parent
0882741f54
commit
1663e96ddb
@ -630,9 +630,9 @@ class LeftAndMain extends Controller implements PermissionProvider {
|
||||
if($controller->isCurrentPage($child)) $classes .= " current";
|
||||
return "<li id=\"record-$child->ID\" data-id=\"$child->ID\" data-ssclass=\"$child->ClassName\" class=\"" . $classes . "\">" .
|
||||
"<ins class=\"jstree-icon\"> </ins>" .
|
||||
"<a href=\"" . Controller::join_links($recordController->Link("show"), $child->ID) . "\" title=\""
|
||||
. _t('LeftAndMain.PAGETYPE','Page type: ')
|
||||
. ".$child->class\" ><ins class=\"jstree-icon\"> </ins><span class=\"text\">" . ($child->TreeTitle) .
|
||||
"<a href=\"" . Controller::join_links($recordController->Link("show"), $child->ID) . "\" title=\"" .
|
||||
_t('LeftAndMain.PAGETYPE','Page type: ') .
|
||||
"$child->class\" ><ins class=\"jstree-icon\"> </ins><span class=\"text\">" . ($child->TreeTitle).
|
||||
"</span></a>";
|
||||
};
|
||||
$html = $obj->getChildrenAsUL(
|
||||
|
Loading…
Reference in New Issue
Block a user