Skip to content

Commit

Permalink
Don't reverse the pushed data. Closes #14876
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk committed Nov 8, 2016
1 parent 393e0ba commit 85309df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/View/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ public function yieldPushContent($section, $default = '')
return $default;
}

return implode(array_reverse($this->pushes[$section]));
return implode($this->pushes[$section]);
}

/**
Expand Down

0 comments on commit 85309df

Please sign in to comment.