diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2021-12-30 21:44:57 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2021-12-30 21:44:57 +0000 |
commit | e20f6d82320129a82980d220e71cb77125539b64 (patch) | |
tree | 57b3329c2c69695de7db516466319ffbd4f45809 /scripts/forms.php | |
parent | 89edb824a4651bb2bdf7485f167036589e6750c7 (diff) | |
download | pmwiki.svn-e20f6d82320129a82980d220e71cb77125539b64.tar.bz2 |
PreviewPage(), forms.php: add $IncludedPages list after the edit form text area.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@3916 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 cc58de98..fcc781ca 100644 --- a/scripts/forms.php +++ b/scripts/forms.php @@ -374,17 +374,17 @@ SDVA($InputTags['e_form'], array( SDVA($InputTags['e_textarea'], array( ':html' => "<textarea \$InputFormArgs onkeydown='if (event.keyCode==27) event.returnValue=false;' - >\$EditText</textarea>", + >\$EditText</textarea>\$IncludedPages", 'name' => 'text', 'id' => 'text', 'accesskey' => XL('ak_textedit'), 'rows' => XL('e_rows'), 'cols' => XL('e_cols'))); SDVA($InputTags['e_author'], array( ':html' => "<input type='text' \$InputFormArgs />", - 'placeholder' => XL('Author'), + 'placeholder' => PHSC(XL('Author'), ENT_QUOTES), 'name' => 'author', 'value' => $Author)); SDVA($InputTags['e_changesummary'], array( ':html' => "<input type='text' \$InputFormArgs />", 'name' => 'csum', 'size' => '60', 'maxlength' => '100', - 'placeholder' => XL('Summary'), + 'placeholder' => PHSC(XL('Summary'), ENT_QUOTES), 'value' => PHSC(stripmagic(@$_POST['csum']), ENT_QUOTES))); SDVA($InputTags['e_minorcheckbox'], array( ':html' => "<input type='checkbox' \$InputFormArgs />", |