diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2016-06-30 16:48:29 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2016-06-30 16:48:29 +0000 |
commit | a274ff0fab9bd62d56e53abc27c96e61267ce659 (patch) | |
tree | 1301fda43374242c4a6721b4b46ea22c0f2cef92 /scripts/forms.php | |
parent | 473d76035539814bb925d8919d7489be68ed5072 (diff) | |
download | pmwiki.svn-a274ff0fab9bd62d56e53abc27c96e61267ce659.tar.bz2 |
Revert last commit - needs review
git-svn-id: svn://pmwiki.org/pmwiki/trunk@3163 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts/forms.php')
-rw-r--r-- | scripts/forms.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/forms.php b/scripts/forms.php index edf04eab..05819477 100644 --- a/scripts/forms.php +++ b/scripts/forms.php @@ -1,5 +1,5 @@ <?php if (!defined('PmWiki')) exit(); -/* Copyright 2005-2016 Patrick R. Michaud (pmichaud@pobox.com) +/* Copyright 2005-2015 Patrick R. Michaud (pmichaud@pobox.com) This file is part of PmWiki; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -342,8 +342,8 @@ SDVA($InputTags['e_changesummary'], array( 'name' => 'csum', 'size' => '60', 'maxlength' => '100', 'value' => PHSC(stripmagic(@$_POST['csum']), ENT_QUOTES))); SDVA($InputTags['e_minorcheckbox'], array( - ':html' => "<input type='checkbox' \$InputFormArgs />\$InputFormLabel", - 'name' => 'diffclass', 'value' => 'minor', 'label' => XL('This is a minor edit'))); + ':html' => "<input type='checkbox' \$InputFormArgs />", + 'name' => 'diffclass', 'value' => 'minor')); if (@$_POST['diffclass']=='minor') SDV($InputTags['e_minorcheckbox']['checked'], 'checked'); SDVA($InputTags['e_savebutton'], array( |