We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98740c7 commit 7e8a581Copy full SHA for 7e8a581
src/templates/User/Update.phtml
@@ -158,7 +158,12 @@ require('./header.inc.phtml');
158
} ?>>
159
<hr/>
160
<label for="biography">Biography:</label>
161
- <textarea maxlength="<?php echo $this->getContext()->biography_max_len; ?>" name="biography" id="biography"><?php echo filter_var($this->getContext()->biography, FILTER_SANITIZE_FULL_SPECIAL_CHARS); ?></textarea>
+ <textarea tabindex="5"
162
+ maxlength="<?php echo $this->getContext()->biography_max_len; ?>"
163
+ name="biography" id="biography"><?php echo filter_var(
164
+ $this->getContext()->biography,
165
+ FILTER_SANITIZE_FULL_SPECIAL_CHARS
166
+ ); ?></textarea>
167
<?php if ($biography_error) {
168
echo '<p>' . $biography_error . '</p>';
169
} ?>
0 commit comments