mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Merge pull request #202 from assertchris/hide-current-parent-for-merge-options
Hide current parent for merge options
This commit is contained in:
commit
0fd7f5fe8b
@ -65,7 +65,7 @@ class GridFieldMergeAction implements GridField_ColumnProvider, GridField_Action
|
||||
*/
|
||||
public function getColumnContent($gridField, $record, $columnName) {
|
||||
if($columnName === 'MergeAction') {
|
||||
$dropdown = new DropdownField('Target', 'Target', $this->records->map());
|
||||
$dropdown = new DropdownField('Target', 'Target', $this->records->exclude('ID', $record->ID)->map());
|
||||
|
||||
$prefix = strtolower($this->parentMethod . '-' . $this->childMethod);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user