Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Config/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,9 @@

App::uses('Router', 'Routing');
Router::parseExtensions();

//インストールのapplication.ymlがない場合、Noticeになるため
if (! Configure::read('NetCommons.installed') && CakePlugin::loaded('Install')) {
App::uses('InstallUtil', 'Install.Utility');
$InstallUtil = new InstallUtil();
}
1 change: 0 additions & 1 deletion View/Layouts/default.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
*/
$cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework');
?>
<!DOCTYPE html>
<html lang="<?php echo Configure::read('Config.language') ?>" ng-app="NetCommonsApp">
Expand Down