Commit 4ac501f4 by Qiang Xue

Removed placeholders.

parent 7f27ef59
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
*/ */
$title = $handler->htmlEncode($exception instanceof \yii\base\Exception ? $exception->getName() : get_class($exception)); $title = $handler->htmlEncode($exception instanceof \yii\base\Exception ? $exception->getName() : get_class($exception));
?> ?>
<?php if (method_exists($this, 'beginPage')) $this->beginPage(); ?>
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
...@@ -64,3 +65,4 @@ $title = $handler->htmlEncode($exception instanceof \yii\base\Exception ? $excep ...@@ -64,3 +65,4 @@ $title = $handler->htmlEncode($exception instanceof \yii\base\Exception ? $excep
<?php if (method_exists($this, 'endBody')) $this->endBody(); // to allow injecting code into body (mostly by Yii Debug Toolbar) ?> <?php if (method_exists($this, 'endBody')) $this->endBody(); // to allow injecting code into body (mostly by Yii Debug Toolbar) ?>
</body> </body>
</html> </html>
<?php if (method_exists($this, 'endPage')) $this->endPage(); ?>
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
* @var \yii\base\ErrorHandler $handler * @var \yii\base\ErrorHandler $handler
*/ */
?> ?>
<?php if (method_exists($this, 'beginPage')) $this->beginPage(); ?>
<!doctype html> <!doctype html>
<html lang="en-us"> <html lang="en-us">
...@@ -488,3 +489,4 @@ window.onload = function() { ...@@ -488,3 +489,4 @@ window.onload = function() {
</body> </body>
</html> </html>
<?php if (method_exists($this, 'endPage')) $this->endPage(); ?>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment