Skip to content

Commit 85309df

Browse files
committed
Don't reverse the pushed data. Closes #14876
1 parent 393e0ba commit 85309df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/View/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ public function yieldPushContent($section, $default = '')
749749
return $default;
750750
}
751751

752-
return implode(array_reverse($this->pushes[$section]));
752+
return implode($this->pushes[$section]);
753753
}
754754

755755
/**

0 commit comments

Comments
 (0)