diff options
-rw-r--r-- | data/wiki/syntax.txt | 2 | ||||
-rw-r--r-- | inc/html.php | 8 |
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> </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 +?> |