| @@ -54,9 +54,8 @@ | ||
| 54 | 54 | $backupId = filter_input(INPUT_GET, 'backupId', FILTER_SANITIZE_NUMBER_INT); |
| 55 | 55 | $blocks['filters']['type'] = 'block'; |
| 56 | 56 | // If backupId is not provided it must be NULL in the filter, |
| 57 | 57 | $blocks['filters']['backupId'] = $backupId ? $backupId : null; |
| 58 | - $blocks['filters']['returnCodeFile'] = true; | |
| 59 | 58 | // Push data to the view. |
| 60 | 59 | $this->view->blocks = $this->model->getBlocks(null, $blocks['filters']); |
| 61 | 60 | $this->view->order = $this->model->getOrder(); |
| 62 | 61 | $this->view->backupId = $blocks['filters']['backupId']; |
| @@ -72,15 +71,8 @@ | ||
| 72 | 71 | * put your comment there... |
| 73 | 72 | * |
| 74 | 73 | */ |
| 75 | 74 | protected function installAction() { |
| 76 | - // Initialize. | |
| 77 | - $model = $this->getModel('installer'); | |
| 78 | - // Do fresh installation if the installed version and the | |
| 79 | - // current version doesn't share the same release and edition signs. | |
| 80 | - if ($model->isUpgrade() && $model->isCommonRelease()) { | |
| 81 | - $this->request['layout'] = 'upgrade'; | |
| 82 | - } | |
| 83 | 75 | echo parent::displayAction(); |
| 84 | 76 | } |
| 85 | 77 | |
| 86 | 78 | /** |
| @@ -92,15 +84,7 @@ | ||
| 92 | 84 | // Diplay notice only if not dismissed! |
| 93 | 85 | if (!$model->dismissNotice()) { |
| 94 | 86 | echo parent::displayAction(); |
| 95 | 87 | } |
| 96 | - } | |
| 97 | - | |
| 98 | - /** | |
| 99 | - * put your comment there... | |
| 100 | - * | |
| 101 | - */ | |
| 102 | - public function setupAction() { | |
| 103 | - echo parent::displayAction(); | |
| 104 | 88 | } |
| 105 | 89 | |
| 106 | 90 | } // End class. |