diff options
author | Aaron Parecki <aaron@parecki.com> | 2019-10-19 21:31:55 +0100 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2019-10-19 21:31:55 +0100 |
commit | 873cc81ee7325752c43dd007f723b225758cf9ac (patch) | |
tree | 6dad56e3fc011452f6064d47655cf4d35dc50fac /views/editor.php | |
parent | ecb47c9c2f6396a7627d92b8e2023f478be05a36 (diff) |
drop php shorttags
Diffstat (limited to 'views/editor.php')
-rw-r--r-- | views/editor.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/editor.php b/views/editor.php index 5247bda..b80375f 100644 --- a/views/editor.php +++ b/views/editor.php @@ -49,9 +49,9 @@ <div class="toolbar"> <div class="toolbar-left"> <span class="item"><a href="/"><img src="/editor-files/quill-logo-36.png" width="36" height="31" class="logo"></a></span> - <? if($this->user): ?> + <?php if($this->user): ?> <span class="item text"><b><?= display_url($this->user->url) ?></b></span> - <? endif; ?> + <?php endif; ?> <span class="item text"><span id="draft-status">Draft</span></span> </div> <div class="toolbar-right"> @@ -132,4 +132,4 @@ <script src="/editor-files/editor.js"></script> </body> -</html>
\ No newline at end of file +</html> |