TYPO3 CMS  TYPO3_6-2
CoreUpdateVerifyChecksum.php
Go to the documentation of this file.
1 <?php
3 
21 
27  protected function executeAction() {
28  $this->view->assignMultiple(
29  array(
30  'success' => $this->coreUpdateService->verifyFileChecksum($this->getVersionToHandle()),
31  'status' => $this->coreUpdateService->getMessages(),
32  )
33  );
34  return $this->view->render();
35  }
36 }