BUGFIX: fixed select all link using incorrect function (from r105868)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@112483 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-10-15 02:33:58 +00:00
parent c77f395451
commit 0bf70b9032
2 changed files with 5 additions and 2 deletions

View File

@ -89,6 +89,7 @@ class CommentAdmin extends LeftAndMain {
$idField = new HiddenField('ID', '', $section);
$table = new CommentTableField($this, "Comments", "PageComment", $section, $tableFields, $popupFields, array($filter), 'Created DESC');
$table->setParentClass(false);
$table->setFieldCasting(array(
'Created' => 'SSDatetime->Full',
@ -96,7 +97,9 @@ class CommentAdmin extends LeftAndMain {
));
$table->setPageSize(self::get_comments_per_page());
$table->addSelectOptions(array('all'=>'All', 'none'=>'None'));
$table->Markable = true;
$fields = new FieldSet(
new LiteralField("Title", $title),
$idField,

View File

@ -44,7 +44,7 @@
<% if Items %>
<% control Items %>
<tr id="record-$Parent.id-$ID"<% if HighlightClasses %> class="$HighlightClasses"<% end_if %>>
<% if Markable %><td width="18" class="$SelectionTags">$MarkingCheckbox</td><% end_if %>
<% if Markable %><td width="18" class="$SelectOptionClasses">$MarkingCheckbox</td><% end_if %>
<% control Fields %>
<td class="$Title">$Value</td>
<% end_control %>