Skip to content

Commit

Permalink
Update CakePHP to v3.8.3 (NOJIRA)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benn Oshrin committed Sep 10, 2019
1 parent 3167474 commit 7dcb3d4
Show file tree
Hide file tree
Showing 377 changed files with 13,043 additions and 3,640 deletions.
2 changes: 1 addition & 1 deletion app/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"require": {
"php": ">=5.6",
"adodb/adodb-php": "^5.20",
"cakephp/cakephp": "3.6.*",
"cakephp/cakephp": "3.8.*",
"cakephp/migrations": "^1.0",
"cakephp/plugin-installer": "^1.0",
"doctrine/dbal": "^2.9",
Expand Down
97 changes: 73 additions & 24 deletions app/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/src/Controller/AppController.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public function beforeRender(\Cake\Event\Event $event) {
$this->set('vv_matchgrids', $this->Matchgrids->find('list')->find('activeMatchGrids')->order(['table_name' => 'ASC'])->toArray());

// The set of menu permissions, so the layout knows what to render
if($this->Authorization && $curUser) {
if(isset($this->Authorization) && $curUser) {
// Ordinarily $this->Authorization will be set, but under certain error conditions
// it won't, which will prevent error messages from rendering

Expand Down
115 changes: 0 additions & 115 deletions app/vendor/cakephp/cakephp/.mailmap

This file was deleted.

45 changes: 0 additions & 45 deletions app/vendor/cakephp/cakephp/.varci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion app/vendor/cakephp/cakephp/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2005-2018, Cake Software Foundation, Inc. (https://cakefoundation.org)
Copyright (c) 2005-present, Cake Software Foundation, Inc. (https://cakefoundation.org)

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion app/vendor/cakephp/cakephp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ recommend using the [app skeleton](https://github.com/cakephp/app) as
a starting point. For existing applications you can run the following:

``` bash
$ composer require cakephp/cakephp:"~3.6"
$ composer require cakephp/cakephp
```

## Running Tests
Expand Down
Loading

0 comments on commit 7dcb3d4

Please sign in to comment.