diff options
author | Andreas Gohr <andi@splitbrain.org> | 2005-10-02 13:32:55 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2005-10-02 13:32:55 +0200 |
commit | b6912aeac771ef294377b8af071d28f6acfa7050 (patch) | |
tree | 7c93c9124d89ef748213b421cd582dace7d7442a /inc/template.php | |
parent | 075f000f1c8f0899f80f94e63a11071fcc506c55 (diff) | |
download | rpg-b6912aeac771ef294377b8af071d28f6acfa7050.tar.gz rpg-b6912aeac771ef294377b8af071d28f6acfa7050.tar.bz2 |
minor edit checkbox
This patch adds a minor edit checkbox to the edit form for logged in
users. Minor edits are displayed different in recent changes and the
page revision history. The RSS feed excludes minor edits by default -
this can be changed by adding a minor
darcs-hash:20051002113255-7ad00-2bc9e1aaa76d9616428e760529ecc14ef119cf71.gz
Diffstat (limited to 'inc/template.php')
-rw-r--r-- | inc/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/template.php b/inc/template.php index e14d0d0ad..8b9aab635 100644 --- a/inc/template.php +++ b/inc/template.php @@ -800,7 +800,7 @@ function tpl_mediauploadform(){ ptln('<input type="text" name="id" class="edit" />',4); ptln('<input type="submit" class="button" value="'.$lang['btn_upload'].'" accesskey="s" />',4); if($AUTH >= AUTH_DELETE){ - ptln('<label for="ow" class="simple"><input type="checkbox" name="ow" value="1" id="ow">'.$lang['txt_overwrt'].'</label>',4); + ptln('<label for="ow"><input type="checkbox" name="ow" value="1" id="ow">'.$lang['txt_overwrt'].'</label>',4); } ptln('</form>',2); } |