Changeset 1474:122a77514ce1 for plugins/pages
- Timestamp:
- 08/19/13 15:22:41 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pages/page.php
r1454 r1474 455 455 456 456 echo 457 '<p><label for="post_status" >'.__('Page status:').'</label> '.457 '<p><label for="post_status" class="ib">'.__('Page status:').'</label> '. 458 458 form::combo('post_status',$status_combo,$post_status,'','',!$can_publish). 459 459 '</p>'. 460 460 461 '<p><label for="post_dt" >'.__('Published on:').'</label>'.461 '<p><label for="post_dt" class="ib">'.__('Published on:').'</label>'. 462 462 form::field('post_dt',16,16,$post_dt,($bad_dt ? 'invalid' : '')).'</p>'. 463 463 464 '<p><label for="post_format" >'.__('Text formating:').'</label>'.464 '<p><label for="post_format" class="ib">'.__('Text formating:').'</label>'. 465 465 form::combo('post_format',$formaters_combo,$post_format). 466 466 ($post_id && $post_format != 'xhtml' ? '<a class="button" href="'.html::escapeURL($redir_url).'&id='.$post_id.'&xconv=1">'.__('Convert to XHTML').'</a>' : ''). … … 493 493 '</p>'. 494 494 495 '<p><label for="post_lang" >'.__('Page lang:').'</label>'.495 '<p><label for="post_lang" class="ib">'.__('Page lang:').'</label>'. 496 496 form::combo('post_lang',$lang_combo,$post_lang).'</p>'. 497 497 498 '<p><label for="post_password" >'.__('Page password:').'</label>'.498 '<p><label for="post_password" class="ib">'.__('Page password:').'</label>'. 499 499 form::field('post_password',10,32,html::escapeHTML($post_password),'maximal'). 500 500 '</p>'. 501 501 502 '<div class="lockable" >'.503 '<p><label for="post_url" >'.__('Basename:').'</label>'.502 '<div class="lockable" class="ib">'. 503 '<p><label for="post_url" class="ib">'.__('Basename:').'</label>'. 504 504 form::field('post_url',10,255,html::escapeHTML($post_url),'maximal'). 505 505 '</p>'. … … 512 512 { 513 513 echo 514 '<h 3 class="clear">'.__('Attachments').'</h3>';514 '<h4 class="clear">'.__('Attachments').'</h4>'; 515 515 foreach ($post_media as $f) 516 516 { … … 541 541 542 542 if (empty($post_media)) { 543 echo '<p >'.__('No attachment.').'</p>';543 echo '<p class="form-note">'.__('No attachment.').'</p>'; 544 544 } 545 545 echo '<p><a class="button" href="media.php?post_id='.$post_id.'">'.__('Add files to this page').'</a></p>';
Note: See TracChangeset
for help on using the changeset viewer.