diff --git a/src/IFramePage.php b/src/IFramePage.php
index 2e08bbf..fffe512 100644
--- a/src/IFramePage.php
+++ b/src/IFramePage.php
@@ -7,6 +7,7 @@
use SilverStripe\Forms\CheckboxField;
use SilverStripe\Forms\NumericField;
use SilverStripe\Forms\HTMLEditor\HtmlEditorField;
+use SilverStripe\ORM\FieldType\DBField;
/**
* Iframe page type embeds an iframe of URL of choice into the page.
@@ -46,7 +47,10 @@ public function getCMSFields()
$fields->removeFieldFromTab('Root.Main', 'Content');
$fields->addFieldToTab('Root.Main', $url = new TextField('IFrameURL', 'Iframe URL'));
$url->setRightTitle(
- 'Can be absolute (http://silverstripe.com) or relative to this site (about-us).'
+ DBField::create_field(
+ 'HTMLText',
+ 'Can be absolute (http://silverstripe.com) or relative to this site (about-us).'
+ )
);
$fields->addFieldToTab(
'Root.Main',