ENHANCEMENT: Enable nested urls by default on new projects.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@88519 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sminnee 2009-10-11 00:46:16 +00:00
parent 58ba28451e
commit 733d919ec9
2 changed files with 6 additions and 3 deletions

View File

@ -667,7 +667,8 @@ MySQLDatabase::set_connection_charset('utf8');
// downloaded from http://www.silverstripe.com/themes/
SSViewer::set_theme('$theme');
?>
// enable nested URLs for this site (e.g. page/sub-page/)
SiteTree::enable_nested_urls();
PHP
);
@ -703,7 +704,8 @@ Director::set_dev_servers($devServers);
// downloaded from http://www.silverstripe.com/themes/
SSViewer::set_theme('$theme');
?>
// enable nested URLs for this site (e.g. page/sub-page/)
SiteTree::enable_nested_urls();
PHP
);
}

View File

@ -14,4 +14,5 @@ MySQLDatabase::set_connection_charset('utf8');
// downloaded from http://www.silverstripe.com/themes/
SSViewer::set_theme('blackcandy');
?>
// enable nested URLs for this site (e.g. page/sub-page/)
SiteTree::enable_nested_urls();