diff --git a/application/modules/bulletin/controllers/ViewController.php b/application/modules/bulletin/controllers/ViewController.php index 26abce0ba3dd0e169a3d56523ec87c21ed2acc74..748ff104ba1c3d4f8e79561fe8029278aa43b05b 100644 --- a/application/modules/bulletin/controllers/ViewController.php +++ b/application/modules/bulletin/controllers/ViewController.php @@ -46,8 +46,8 @@ class Bulletin_ViewController extends Requests_ViewController $this->view->request = $request; $this->view->id = $in['id']; $this->view->section = $section; - $this->view->originalFileContents = UNL_UndergraduateBulletin_EPUB_Utilities::format($this->view->originalFileContents); - $this->view->proposedFileContents = UNL_UndergraduateBulletin_EPUB_Utilities::format($this->view->proposedFileContents); + //$this->view->originalFileContents = UNL_UndergraduateBulletin_EPUB_Utilities::format($this->view->originalFileContents); + //$this->view->proposedFileContents = UNL_UndergraduateBulletin_EPUB_Utilities::format($this->view->proposedFileContents); $this->view->isRequestValid = $request->isValid(); } @@ -109,14 +109,14 @@ class Bulletin_ViewController extends Requests_ViewController '/data/' . $repo->getFilePathForSection($section), $parentCommit ); $contents = Bulletin_SectionModel::getBodyHtml($contents); - $contents = UNL_UndergraduateBulletin_EPUB_Utilities::format($contents); + //$contents = UNL_UndergraduateBulletin_EPUB_Utilities::format($contents); $requestOriginalFileContents[$request->getId()] = $contents; $contents = $repo->getFileNotes( '/data/' . $repo->getFilePathForSection($section), 'request-' . $request->getId() ); $contents = Bulletin_SectionModel::getBodyHtml($contents); - $contents = UNL_UndergraduateBulletin_EPUB_Utilities::format($contents); + //$contents = UNL_UndergraduateBulletin_EPUB_Utilities::format($contents); $requestProposedFileContents[$request->getId()] = $contents; }