Browse Source

update UpgradeShell

euromark 12 years ago
parent
commit
dbda00e2df
1 changed files with 7 additions and 1 deletions
  1. 7 1
      Cake/Console/Command/UpgradeShell.php

+ 7 - 1
Cake/Console/Command/UpgradeShell.php

@@ -77,7 +77,13 @@ class UpgradeShell extends Shell {
 		$path = $this->_getPath();
 
 		$moves = array(
-			'Test' . DS . 'Case' => 'Test' . DS . 'TestCase'
+			'Test' . DS . 'Case' => 'Test' . DS . 'TestCase',
+			'View' . DS . 'Elements' => 'View' . DS . 'Element',
+			'View' . DS . 'Emails' => 'View' . DS . 'Email',
+			'View' . DS . 'Layouts' => 'View' . DS . 'Layout',
+			'View' . DS . 'Layout' . DS . 'Emails' => 'View' . DS . 'Layout' . DS . 'Email',
+			'View' . DS . 'Scaffolds' => 'View' . DS . 'Scaffold',
+			'View' . DS . 'Errors' => 'View' . DS . 'Error',
 		);
 		$dry = $this->params['dryRun'];