mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Make ScaffoldView extend View instead of deprecated ThemeView
This commit is contained in:
parent
94815a74f1
commit
3e8a7f5e66
1 changed files with 2 additions and 2 deletions
|
@ -20,14 +20,14 @@
|
|||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
App::uses('ThemeView', 'View');
|
||||
App::uses('View', 'View');
|
||||
|
||||
/**
|
||||
* ScaffoldView provides specific view file loading features for scaffolded views.
|
||||
*
|
||||
* @package Cake.View
|
||||
*/
|
||||
class ScaffoldView extends ThemeView {
|
||||
class ScaffoldView extends View {
|
||||
|
||||
/**
|
||||
* Override _getViewFileName Appends special scaffolding views in.
|
||||
|
|
Loading…
Reference in a new issue