From 8d6d5c25014293976948e4e09af296dc23a568a5 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Mon, 3 Nov 2008 02:07:03 +0000 Subject: [PATCH] MINOR Code formatting in CMSMenuItem git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@65126 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/CMSMenuItem.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/CMSMenuItem.php b/code/CMSMenuItem.php index 9500fd38..8a00d85d 100644 --- a/code/CMSMenuItem.php +++ b/code/CMSMenuItem.php @@ -39,10 +39,10 @@ class CMSMenuItem extends Object * @param integer $priority The sort priority of the item */ public function __construct($title, $url, $controller = null, $priority = -1) { - $this->title = $title; - $this->url = $url; - $this->controller = $controller; - $this->priority = $priority; + $this->title = $title; + $this->url = $url; + $this->controller = $controller; + $this->priority = $priority; } }