diff options
author | godzilla80@gmx.net <> | 2009-11-08 11:47:56 +0000 |
---|---|---|
committer | godzilla80@gmx.net <> | 2009-11-08 11:47:56 +0000 |
commit | 3bcf04bf5084e049a00855db549ee2a7c34ad9ac (patch) | |
tree | c14b34f3b38af8f6269570426b66f68a64c5ef46 | |
parent | 90bfb3ffe1c6f0127ffd9ce16cc71d1a662b5169 (diff) |
Correct code formating of last commit
-rw-r--r-- | framework/Web/UI/WebControls/TTextBox.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/framework/Web/UI/WebControls/TTextBox.php b/framework/Web/UI/WebControls/TTextBox.php index 6fec999f..8ab548a3 100644 --- a/framework/Web/UI/WebControls/TTextBox.php +++ b/framework/Web/UI/WebControls/TTextBox.php @@ -298,17 +298,17 @@ class TTextBox extends TWebControl implements IPostBackDataHandler, IValidatable $writer->write(THttpUtility::htmlEncode($this->getText()));
}
- /**
- * Renders an additional line-break after the opening tag when it
+ /**
+ * Renders an additional line-break after the opening tag when it
* is in MultiLine text mode.
- * @param THtmlWriter the writer used for the rendering purpose^M
- */
- public function renderBeginTag($writer)
- {
+ * @param THtmlWriter the writer used for the rendering purpose^M
+ */
+ public function renderBeginTag($writer)
+ {
parent::renderBeginTag($writer);
if($this->getTextMode()==='MultiLine')
$writer->write("\n");
- }
+ }
/**
* @return TTextBoxAutoCompleteType the AutoComplete type of the textbox
|