File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22
3- ## v4.1.0
3+ ## v4.1.1-Alpha
4+ - Fixed missing template in ExceptionHandler and ` notFoundHandler `
5+ - Migration rollback will throw a warning if a class is not found instead of aborting
6+
7+ ## v4.1.0-Alpha
48- Switch from pagination "plugin" to "widget" for Tablesorter. Allows us to update to the latest version of TS (fix #688 , #715 )
59- Implement ` WhoopsRenderer ` for pretty debug pages. See (#674 )
610- Refactor error handling. Move responsibility for displayErrorDetails to handlers, and factor our ErrorRenderers. Addresses (#702 )
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ public function renderGenericResponse()
162162 try {
163163 $ template = $ this ->ci ->view ->getEnvironment ()->loadTemplate ("pages/error/ $ httpCode.html.twig " );
164164 } catch (\Twig_Error_Loader $ e ) {
165- $ template = $ this ->ci ->view ->getEnvironment ()->loadTemplate ("pages/error/default .html.twig " );
165+ $ template = $ this ->ci ->view ->getEnvironment ()->loadTemplate ("pages/abstract/error .html.twig " );
166166 }
167167
168168 return $ this ->response
Original file line number Diff line number Diff line change @@ -483,7 +483,7 @@ public function register(ContainerInterface $container)
483483 try {
484484 $ template = $ c ->view ->getEnvironment ()->loadTemplate ("pages/error/404.html.twig " );
485485 } catch (\Twig_Error_Loader $ e ) {
486- $ template = $ c ->view ->getEnvironment ()->loadTemplate ("pages/error/default .html.twig " );
486+ $ template = $ c ->view ->getEnvironment ()->loadTemplate ("pages/abstract/error .html.twig " );
487487 }
488488
489489 return $ response ->withStatus (404 )
@@ -589,7 +589,7 @@ public function register(ContainerInterface $container)
589589 // Load the translations
590590 $ paths = $ c ->localePathBuilder ->buildPaths ();
591591 $ loader = new ArrayFileLoader ($ paths );
592-
592+
593593 // Create the $translator object
594594 $ translator = new MessageTranslator ($ loader ->load ());
595595
You can’t perform that action at this time.
0 commit comments