diff options
author | andi <andi@splitbrain.org> | 2005-02-05 20:14:09 +0100 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-02-05 20:14:09 +0100 |
commit | ea8e010c1df42e531cc28da6f31e586e89ee6c64 (patch) | |
tree | 8b8c06cd97e6e59e08fe2cd1d1ed91ce7e8a4bb0 /inc | |
parent | 7c5a70ebd1f751fba892e3cb87aea7eb92562e0a (diff) | |
download | rpg-ea8e010c1df42e531cc28da6f31e586e89ee6c64.tar.gz rpg-ea8e010c1df42e531cc28da6f31e586e89ee6c64.tar.bz2 |
summary check
darcs-hash:20050205191409-9977f-8060d41d72f5a905ffffa9ae0513f41bd3df9947.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/html.php | 6 |
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 |