diff options
-rw-r--r-- | type/Default.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/type/Default.class.php b/type/Default.class.php index e3997de..20b2745 100644 --- a/type/Default.class.php +++ b/type/Default.class.php | |||
@@ -171,7 +171,7 @@ class Type_Default { | |||
171 | if (is_array($this->files) && count($this->files)>1) { | 171 | if (is_array($this->files) && count($this->files)>1) { |
172 | # and must it be ordered? | 172 | # and must it be ordered? |
173 | if (is_array($this->order)) { | 173 | if (is_array($this->order)) { |
174 | $this->tinstances = array_intersect($this->order, $this->tinstances); | 174 | $this->tinstances = array_merge(array_intersect($this->order, $this->tinstances)); |
175 | } | 175 | } |
176 | # use tinstances as sources | 176 | # use tinstances as sources |
177 | if(is_array($this->data_sources) && count($this->data_sources)>1) { | 177 | if(is_array($this->data_sources) && count($this->data_sources)>1) { |