Skip to content

Commit

Permalink
Fixed CI warning about max characters in line
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Oude Rengerink committed Jun 4, 2021
1 parent f7f65e6 commit 0973f27
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/GridFieldOrderableRows.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,10 @@ public function handleReorder($grid, $request)
$this->httpError(400);
}

Controller::curr()->getResponse()->addHeader('X-Status', rawurlencode(_t('GridFieldOrderableRows.REORDERED', 'Records reordered.')));
Controller::curr()->getResponse()->addHeader(
'X-Status',
rawurlencode(_t('GridFieldOrderableRows.REORDERED', 'Records reordered.'))
);
return $grid->FieldHolder();
}

Expand Down

0 comments on commit 0973f27

Please sign in to comment.