From de44b90a4a9d4a031b735db0c9c24917790ef5a5 Mon Sep 17 00:00:00 2001 From: cam-findlay Date: Wed, 14 Nov 2012 08:50:25 +1300 Subject: [PATCH] Update code/BlogTree.php Name of a blog could do with more space than default 50 characters. Example a blog name with a tagline for consistant branding... "My Awesome Brand Blog - Servicing customers and good things like that" --- code/BlogTree.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/BlogTree.php b/code/BlogTree.php index 129bb48..1f3333c 100644 --- a/code/BlogTree.php +++ b/code/BlogTree.php @@ -23,7 +23,7 @@ class BlogTree extends Page { static $default_entries_limit = 10; static $db = array( - 'Name' => 'Varchar', + 'Name' => 'Varchar(255)', 'InheritSideBar' => 'Boolean', 'LandingPageFreshness' => 'Varchar', );