PluginProbe
CSS & JavaScript Toolbox / 6.0
CSS & JavaScript Toolbox v6.0
trunk 0.3 0.8 10 10.1 11 11.2 11.3 11.4 11.5 11.6 11.7 11.8 11.9 11.9.1 12 12.0 12.0.1 12.0.3 12.0.4 12.0.5 12.0.6 12.0.7 6.0 6.0.11 All 60 releases
← All changes | controllers/blocks.php +0 -16 126.0 View file →
@@ -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.