ORIENT/modules
Samuel Georges b9581332aa Save relations first in model saver
This aligns better with the relation principal "parent saves child" / "child cannot save parent" and is more conducive to the natural workflow of a coder, ie

// Relation first
$gallery = new Gallery;
$gallery->save();

// Primary model last
$post = new Post;
$post->gallery = $gallery;
$post->save();

Refs https://github.com/octobercms/library/pull/277
2017-12-06 21:21:19 +11:00
..
backend Save relations first in model saver 2017-12-06 21:21:19 +11:00
cms File cleaned up as part of review 2017-11-25 21:17:07 +11:00
system Updating validation messages translations (#3261) 2017-12-02 15:37:23 -06:00