fixing syntax error

This commit is contained in:
Peter Thaleikis 2015-10-25 22:41:13 +13:00
parent 417bccfe8d
commit 791c52c6bd

View File

@ -73,7 +73,7 @@ Enable multiple fileuploads by using a many_many (or has_many) relation. Again,
```php
class GalleryImageExtension extends DataExtension {
private static $belongs_many_many = array('Galleries' => 'GalleryPage);
private static $belongs_many_many = array('Galleries' => 'GalleryPage');
}
```