Changes in [39:859596664e23:45:282249d3b55d]
- Location:
- admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/comment.php
r3 r45 191 191 echo 192 192 '<form action="comment.php" method="post" id="comment-form">'. 193 '<p> <label>'.__('IP address:').'</label> '.193 '<p>'.__('IP address:').'<br /> '. 194 194 '<a href="comments.php?ip='.$comment_ip.'">'.$comment_ip.'</a></p>'. 195 195 196 '<p> <label>'.__('Date:').'</label> '.196 '<p>'.__('Date:').'<br /> '. 197 197 dt::dt2str(__('%Y-%m-%d %H:%M'),$comment_dt).'</p>'. 198 198 199 '<p><label class="required" title="'.__('Required field').'">'.__('Author:').199 '<p><label for="comment_author" class="required"><abbr title="'.__('Required field').'">*</abbr>'.__('Author:'). 200 200 form::field('comment_author',30,255,html::escapeHTML($comment_author)). 201 201 '</label></p>'. 202 202 203 '<p><label >'.__('Email:').203 '<p><label for="comment_email">'.__('Email:'). 204 204 form::field('comment_email',30,255,html::escapeHTML($comment_email)). 205 205 $comment_mailto. 206 206 '</label></p>'. 207 207 208 '<p><label >'.__('Web site:').208 '<p><label for="comment_site">'.__('Web site:'). 209 209 form::field('comment_site',30,255,html::escapeHTML($comment_site)). 210 210 '</label></p>'. 211 211 212 '<p><label >'.__('Status:').212 '<p><label for="comment_status">'.__('Status:'). 213 213 form::combo('comment_status',$status_combo,$comment_status,'','',!$can_publish). 214 214 '</label></p>'. -
admin/comments.php
r3 r45 159 159 '<div class="three-cols">'. 160 160 '<div class="col">'. 161 '<label >'.__('Type:').' '.161 '<label for="type">'.__('Type:').' '. 162 162 form::combo('type',$type_combo,$type). 163 163 '</label> '. 164 '<label >'.__('Status:').' '.164 '<label for="status">'.__('Status:').' '. 165 165 form::combo('status',$status_combo,$status). 166 166 '</label>'. … … 168 168 169 169 '<div class="col">'. 170 '<p><label >'.__('Order by:').' '.170 '<p><label for="sortby">'.__('Order by:').' '. 171 171 form::combo('sortby',$sortby_combo,$sortby). 172 172 '</label> '. 173 '<label >'.__('Sort:').' '.173 '<label for="order">'.__('Sort:').' '. 174 174 form::combo('order',$order_combo,$order). 175 175 '</label></p>'. 176 '<p><label class="classic">'. form::field('nb',3,3,$nb_per_page).' '.176 '<p><label for="nb" class="classic">'. form::field('nb',3,3,$nb_per_page).' '. 177 177 __('Comments per page').'</label></p>'. 178 178 '</div>'. 179 179 180 180 '<div class="col">'. 181 '<p><label >'.__('Comment author:').' '.181 '<p><label for="author">'.__('Comment author:').' '. 182 182 form::field('author',20,255,html::escapeHTML($author)). 183 183 '</label>'. 184 '<label >'.__('IP address:').' '.184 '<label for="ip">'.__('IP address:').' '. 185 185 form::field('ip',20,39,html::escapeHTML($ip)). 186 186 '</label></p>'. … … 213 213 '<p class="col checkboxes-helpers"></p>'. 214 214 215 '<p class="col right"> '.__('Selected comments action:').''.216 form::combo('action',$combo_action ).215 '<p class="col right"><label for="action" class="inline">'.__('Selected comments action:').'</label> '. 216 form::combo('action',$combo_action,'','','','','title="'.__('action: ').'"'). 217 217 $core->formNonce(). 218 218 '<input type="submit" value="'.__('ok').'" /></p>'. -
admin/index.php
r13 r45 249 249 '<form id="quick-entry" action="post.php" method="post">'. 250 250 '<fieldset>'. 251 '<p class="col"><label class="required" title="'.__('Required field').'">'.__('Title:').251 '<p class="col"><label for="post_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:'). 252 252 form::field('post_title',20,255,'','maximal',2). 253 253 '</label></p>'. 254 '<p class="area"><label class="required" title="'.__('Required field').'"'.255 'for="post_content"> '.__('Content:').'</label> '.254 '<p class="area"><label class="required" '. 255 'for="post_content"><abbr title="'.__('Required field').'">*</abbr> '.__('Content:').'</label> '. 256 256 form::textarea('post_content',50,7,'','',2). 257 257 '</p>'. 258 '<p><label class="classic">'.__('Category:').' '.258 '<p><label for="cat_id" class="classic">'.__('Category:').' '. 259 259 form::combo('cat_id',$categories_combo,'','',2).'</label></p>'. 260 260 '<p><input type="submit" value="'.__('save').'" name="save" tabindex="3" /> '. -
admin/style/default.css
r29 r45 1094 1094 font-size: 1.3em; 1095 1095 } 1096 /* à supprimer quand tous les formulaires auront été corrigés */ 1097 label.required:before { 1098 content: '* '; 1099 color: #c00; 1100 } 1101 1096 label.inline { 1097 display: inline; 1098 } 1102 1099 p.field { 1103 1100 position: relative;
Note: See TracChangeset
for help on using the changeset viewer.