Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
fix: doctype not being output in several places (#200)
Browse files Browse the repository at this point in the history
* fix: doctype not actually being output in several places.

* fix: remove test CDN deps
  • Loading branch information
fibble authored Jul 29, 2024
1 parent a4b9db4 commit 2eaa4e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion module/Olcs/view/layout/base.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}

}
$this->doctype(); ?>
echo $this->doctype(); ?>

<html lang="en">
<head>
Expand Down
2 changes: 1 addition & 1 deletion module/Olcs/view/layout/signin.phtml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
$this->doctype();
echo $this->doctype().PHP_EOL;

// OLCS-26896 - make sure X-UA-Compatible value is not escaped on the internal login screen
$this->headMeta()->setAutoEscape(false);
Expand Down
2 changes: 1 addition & 1 deletion module/Olcs/view/layout/simple.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
</div>

</body>
</html>
</html>

0 comments on commit 2eaa4e4

Please sign in to comment.