summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/html.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/html.php b/inc/html.php
index 6da31045a..0255670e3 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -1044,7 +1044,7 @@ function html_edit($text=null,$include='edit'){ //FIXME: include needed?
</tr>
<tr>
<td colspan="3">
- <textarea name="wikitext" id="wikitext" <?=$ro?> cols="80" rows="10" class="edit" onchange="textChanged = true;" tabindex="1"><?="\n".formText($text)?></textarea>
+ <textarea name="wikitext" id="wikitext" <?=$ro?> cols="80" rows="10" class="edit" onchange="textChanged = true;" onkeyup="summaryCheck();" tabindex="1"><?="\n".formText($text)?></textarea>
</td>
</tr>
<tr>
@@ -1058,7 +1058,7 @@ function html_edit($text=null,$include='edit'){ //FIXME: include needed?
<td>
<?if($wr){?>
<?=$lang['summary']?>:
- <input type="text" class="edit" name="summary" size="50" value="<?=formText($SUM)?>" tabindex="2" />
+ <input type="text" class="edit" name="summary" id="summary" size="50" onkeyup="summaryCheck();" value="<?=formText($SUM)?>" tabindex="2" />
<?}?>
</td>
<td align="right">
@@ -1153,4 +1153,4 @@ function html_debug(){
print '</body></html>';
}
-?>
+?> \ No newline at end of file