From d7efcc4aaf51aa8fe2e066ab9346397b5ecccf91 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Wed, 2 Jun 2010 21:17:34 +0000 Subject: [PATCH] MINOR Removed db/build legacy wording in DevelopmentAdmin (fixes #5676) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@106083 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- dev/DevelopmentAdmin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/DevelopmentAdmin.php b/dev/DevelopmentAdmin.php index 6e6157fee..b2a67a505 100644 --- a/dev/DevelopmentAdmin.php +++ b/dev/DevelopmentAdmin.php @@ -62,7 +62,7 @@ class DevelopmentAdmin extends Controller { function index() { $actions = array( - "build" => "Build/rebuild this environment (formerly db/build). Call this whenever you have updated your project sources", + "build" => "Build/rebuild this environment. Call this whenever you have updated your project sources", "buildcache" => "Rebuild the static cache, if you're using StaticPublisher", "tests" => "See a list of unit tests to run", "tests/all" => "Run all tests", @@ -125,7 +125,7 @@ class DevelopmentAdmin extends Controller { } else { $renderer = new DebugView(); $renderer->writeHeader(); - $renderer->writeInfo("Environment Builder (formerly db/build)", Director::absoluteBaseURL()); + $renderer->writeInfo("Environment Builder", Director::absoluteBaseURL()); echo "
"; $da = new DatabaseAdmin();