Contribution Date
Technology
Contribution Project
Contribution Details
Thanks Chaitanya17 for raising the concern and providing the solution.
Your solutions were very helpful.
I was not aware of this new way of handling $_POST data.
And in a solution for AnnotationsSaveAction.php, I have used:
$postReq = \Drupal::request()->request->all();
$nid = isset($postReq['nid']) ? $postReq['nid'] : FALSE;
$img_field = isset($postReq['img_field']) ? $postReq['img_field'] : FALSE;
$annotation = isset($postReq['annotation']) ? $postReq['annotation'] : FALSE;
This reduces multiple times calling get() function.
In 8.x-1.1, I have added a new feature and fixed the raised bug. Please use 8.x-1.1.
Issue Status
Needs Review
Contribution Issue Link
Files count
0
Patches count
0