From 265d52d037e4e43bbe4410801f13ab5f63426926 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Wed, 16 Jan 2008 20:17:14 +0000 Subject: [PATCH] fixed escaping errors in default homepage content git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@48097 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/model/SiteTree.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/model/SiteTree.php b/core/model/SiteTree.php index 0563f7908..bf79ab42d 100644 --- a/core/model/SiteTree.php +++ b/core/model/SiteTree.php @@ -709,7 +709,7 @@ class SiteTree extends DataObject { $homepage = new Page(); $homepage->Title = _t('SiteTree.DEFAULTHOMETITLE', 'Home'); - $homepage->Content = _t('SiteTree.DEFAULTHOMECONTENT', '

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS. You can now access the developer documentation, or begin the tutorials.

'); + $homepage->Content = _t('SiteTree.DEFAULTHOMECONTENT', '

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS. You can now access the developer documentation, or begin the tutorials.

'); $homepage->URLSegment = "home"; $homepage->Status = "Published"; $homepage->write();