diff options
Diffstat (limited to 'demos/blog-tutorial/protected/common/NoteBox.php')
-rw-r--r-- | demos/blog-tutorial/protected/common/NoteBox.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/demos/blog-tutorial/protected/common/NoteBox.php b/demos/blog-tutorial/protected/common/NoteBox.php index f5123380..90d5faab 100644 --- a/demos/blog-tutorial/protected/common/NoteBox.php +++ b/demos/blog-tutorial/protected/common/NoteBox.php @@ -1,13 +1,13 @@ -<?php
-
-class NoteBox extends TControl
-{
- public function render($writer)
- {
- $writer->write("<div class=\"note\"><b class=\"tip\">Note:</b>\n");
- $body=$this->renderChildren($writer);
- $writer->write("</div>");
- }
-}
-
+<?php + +class NoteBox extends TControl +{ + public function render($writer) + { + $writer->write("<div class=\"note\"><b class=\"tip\">Note:</b>\n"); + $body=$this->renderChildren($writer); + $writer->write("</div>"); + } +} + ?>
\ No newline at end of file |