Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

Commit

Permalink
Merge pull request #7 from peacemoon/analysis-8wgb14
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
antranapp authored Jan 21, 2017
2 parents 79a052f + b57567e commit b1a1835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public function getContentBasedOnType(Request $request, $slug, $row)
if (!isset($pivotContent[$pivotField])) {
$pivotContent[$pivotField] = [];
}
$pivotContent[$pivotField] = $request->input("pivot_".$pivotField);
$pivotContent[$pivotField] = $request->input('pivot_'.$pivotField);
}

// Create a new content array for updating pivot table
Expand Down

0 comments on commit b1a1835

Please sign in to comment.