1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 14:05:37 +02:00
customise instead of customize
This commit is contained in:
Florian Thoma 2015-05-03 13:35:05 +10:00
parent 4cacebdb88
commit 045b2c569a

View File

@ -76,7 +76,7 @@ does, such as `ArrayData` or `ArrayList`.
'Title' => 'First Job' 'Title' => 'First Job'
))); )));
return $this->customize(new ArrayData(array( return $this->customise(new ArrayData(array(
'Name' => 'John', 'Name' => 'John',
'Role' => 'Head Coach', 'Role' => 'Head Coach',
'Experience' => $experience 'Experience' => $experience
@ -86,4 +86,4 @@ does, such as `ArrayData` or `ArrayList`.
} }
} }
} }