step4.php 380 B

12345678910111213141516
  1. <?php
  2. helper::importControl('install');
  3. class myinstall extends install
  4. {
  5. public function step4()
  6. {
  7. if(!isset($this->config->installed) or !$this->config->installed)
  8. {
  9. $this->view->error = $this->lang->install->errorNotSaveConfig;
  10. $this->display();
  11. }
  12. $_POST['mode'] = 'new';
  13. return parent::step4();
  14. }
  15. }