summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandi <andi@splitbrain.org>2005-02-07 21:50:53 +0100
committerandi <andi@splitbrain.org>2005-02-07 21:50:53 +0100
commit43bbd8ee6503853ce76caefbbc57535e7b329d76 (patch)
tree57edacc15018aa7c3499881ed70dcb0cdd93cbfb
parent57756ab5bd008e6c495e4b462951441b3b6cb6c3 (diff)
downloadrpg-43bbd8ee6503853ce76caefbbc57535e7b329d76.tar.gz
rpg-43bbd8ee6503853ce76caefbbc57535e7b329d76.tar.bz2
fixed accesskey clash (#122)
darcs-hash:20050207205053-9977f-bf3631095d0aa09b65244648d9bb4990c9f4005c.gz
-rw-r--r--data/wiki/syntax.txt2
-rw-r--r--inc/html.php8
2 files changed, 5 insertions, 5 deletions
diff --git a/data/wiki/syntax.txt b/data/wiki/syntax.txt
index ad4687bbd..5d03f1ce8 100644
--- a/data/wiki/syntax.txt
+++ b/data/wiki/syntax.txt
@@ -1,6 +1,6 @@
====== Formatting Syntax ======
-[[wiki:DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing the //Edit this page// button at the top or bottom of the page. If you want to try something, just use the [[playground]] page. The simpler markup is easily accessible via [[doku>quickbuttons]], too.
+[[wiki:DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing the //Edit this page// button at the top or bottom of the page. If you want to try something, just use the [[playground]] page. The simpler markup is easily accessible via [[doku>wiki:quickbuttons|quickbuttons]], too.
===== Basic text formatting =====
diff --git a/inc/html.php b/inc/html.php
index 920d98ddf..77775ae5f 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -319,14 +319,14 @@ function html_header(){
<div class="bar" id="bar_top">
<div class="bar-left" id="bar_topleft">
<?=html_editbutton()?>
- <?=html_btn(revs,$ID,'r',array('do' => 'revisions'))?>
+ <?=html_btn(revs,$ID,'o',array('do' => 'revisions'))?>
</div>
<div class="bar-right" id="bar_topright">
<?=html_btn(recent,'','r',array('do' => 'recent'))?>
<form action="<?=wl()?>" accept-charset="<?=$lang['encoding']?>">
<input type="hidden" name="do" value="search" />
- <input type="text" name="id" class="edit" />
+ <input type="text" accesskey="f" name="id" class="edit" />
<input type="submit" value="<?=$lang['btn_search']?>" class="button" />
</form>&nbsp;
</div>
@@ -418,7 +418,7 @@ function html_footer(){
<div class="bar" id="bar_bottom">
<div class="bar-left" id="bar_bottomleft">
<?=html_editbutton()?>
- <?=html_btn(revs,$ID,'r',array('do' => 'revisions'))?>
+ <?=html_btn(revs,$ID,'o',array('do' => 'revisions'))?>
</div>
<div class="bar-right" id="bar_bottomright">
@@ -1153,4 +1153,4 @@ function html_debug(){
print '</body></html>';
}
-?> \ No newline at end of file
+?>