From db526ddfb7baf86919090e6b2379828a09d32906 Mon Sep 17 00:00:00 2001 From: ceeram Date: Tue, 10 Nov 2009 09:15:10 +0100 Subject: [PATCH] Fixing docblock in bootstrap.php, adding missing quote. refs #280 Signed-off-by: Mark Story --- app/config/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/bootstrap.php b/app/config/bootstrap.php index 861972966..40f33296c 100644 --- a/app/config/bootstrap.php +++ b/app/config/bootstrap.php @@ -29,7 +29,7 @@ * 'plugins' => array('/full/path/to/plugins/', '/next/full/path/to/plugins/'), * 'models' => array('/full/path/to/models/', '/next/full/path/to/models/'), * 'views' => array('/full/path/to/views/', '/next/full/path/to/views/'), - * 'controllers' => array(/full/path/to/controllers/', '/next/full/path/to/controllers/'), + * 'controllers' => array('/full/path/to/controllers/', '/next/full/path/to/controllers/'), * 'datasources' => array('/full/path/to/datasources/', '/next/full/path/to/datasources/'), * 'behaviors' => array('/full/path/to/behaviors/', '/next/full/path/to/behaviors/'), * 'components' => array('/full/path/to/components/', '/next/full/path/to/components/'),