Changeset 3639:fe9f4d94f86b for plugins/pages
- Timestamp:
- 12/29/17 14:17:26 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pages/page.php
r3627 r3639 487 487 '<p class="col">'. 488 488 '<label class="required no-margin bold" for="post_title"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label>'. 489 form::field('post_title',20,255,html::escapeHTML($post_title),'maximal' ).489 form::field('post_title',20,255,html::escapeHTML($post_title),'maximal','',false,'required placeholder="'.__('Title').'"'). 490 490 '</p>', 491 491 … … 499 499 '<p class="area" id="content-area"><label class="required bold" '. 500 500 'for="post_content"><abbr title="'.__('Required field').'">*</abbr> '.__('Content:').'</label> '. 501 form::textarea('post_content',50,$core->auth->getOption('edit_size'),html::escapeHTML($post_content) ).501 form::textarea('post_content',50,$core->auth->getOption('edit_size'),html::escapeHTML($post_content),'','',false,'required placeholder="'.__('Content').'"'). 502 502 '</p>', 503 503 … … 664 664 '<div class="constrained">'. 665 665 '<p><label for="comment_author" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Name:').'</label>'. 666 form::field('comment_author',30,255,html::escapeHTML($core->auth->getInfo('user_cn')) ).666 form::field('comment_author',30,255,html::escapeHTML($core->auth->getInfo('user_cn')),'','',false,'required placeholder="'.__('Author').'"'). 667 667 '</p>'. 668 668 … … 677 677 '<p class="area"><label for="comment_content" class="required"><abbr title="'.__('Required field').'">*</abbr> '. 678 678 __('Comment:').'</label> '. 679 form::textarea('comment_content',50,8, html::escapeHTML('')).679 form::textarea('comment_content',50,8,'','','',false,'required placeholder="'.__('Comment').'"'). 680 680 '</p>'. 681 681
Note: See TracChangeset
for help on using the changeset viewer.